import { WidgetApi, WidgetOptions } from '@captchafox/types'; import React from 'react'; declare class RetryError extends Error { } declare class TimeoutError extends Error { } type CaptchaFoxInstance = Omit; declare const CaptchaFox: React.ForwardRefExoticComponent void) | undefined; className?: string | undefined; nonce?: string | undefined; executeTimeoutSeconds?: number | undefined; } & React.RefAttributes>; declare const CAPTCHA_RESPONSE_KEY = "cf-captcha-response"; export { CAPTCHA_RESPONSE_KEY, CaptchaFox, type CaptchaFoxInstance, RetryError, TimeoutError };