export interface RecaptchaProps {
    sitekey: string;
    hideDefaultBadge?: boolean;
    checkForExisting?: boolean;
}
export declare function useRecaptcha({ sitekey, hideDefaultBadge, checkForExisting, }: RecaptchaProps): (action: string) => Promise<string>;
