interface ReCaptchaProps {
onValidate: (token: string) => void;
action: string;
validate?: boolean;
reCaptchaKey?: string;
}
/** React Component to generate ReCaptcha token
* @example
*
*/
declare const ReCaptcha: React.FC;
export { ReCaptcha };
export type { ReCaptchaProps };