import { CaptchaError } from '../../../lib/types/runtimeTypes'; export type CaptchaErrorType = CaptchaError | null; export interface CaptchaErrorProps { errorType: CaptchaErrorType; onRetry?: () => void; } export declare const CaptchaErrorComponent: ({ errorType, onRetry }: CaptchaErrorProps) => import("react/jsx-runtime").JSX.Element;