export declare const useTurnstile: ({ siteKey, onSuccess, }: {
    siteKey: string;
    onSuccess?: (token: string) => void;
}) => {
    ref: import("react").MutableRefObject<HTMLDivElement | null>;
    token: string | null;
};
