import { useLayoutEffect } from "react";
/**
 * Function to generate the src for the script tag
 * Refs: https://developers.google.com/recaptcha/docs/loading
 */
export declare const getRecaptchaScriptSrc: ({ reCaptchaKey, language, useRecaptchaNet, useEnterprise, }?: {
    reCaptchaKey?: string | null;
    language?: string | null;
    useRecaptchaNet?: boolean;
    useEnterprise?: boolean;
}) => string;
export declare const useIsomorphicLayoutEffect: typeof useLayoutEffect;
