import { ReactNode } from 'react'; export interface ErrorContext { error?: string; setError: (message: string) => void; } export declare const KubernetesClusterErrorContext: import("react").Context; export interface KubernetesClusterErrorProviderProps { children: ReactNode; } export declare const KubernetesClusterErrorProvider: ({ children, }: KubernetesClusterErrorProviderProps) => import("react/jsx-runtime").JSX.Element; export declare const useKubernetesClusterError: () => ErrorContext;