declare const useGoogleRecaptcha: (siteKey: string, action: string, options?: {
    language?: string | undefined;
}) => {
    token: string | null;
    error: string | null;
    fetchCaptcha: () => void;
};
export default useGoogleRecaptcha;
