import { ReCaptchaInstance } from 'recaptcha-v3'; import { App, Ref } from 'vue'; import { IReCaptchaOptions } from './IReCaptchaOptions'; export declare const VueReCaptcha: { install(app: App, options: IReCaptchaOptions): void; }; export declare function useReCaptcha(): IReCaptchaComposition | undefined; export interface IReCaptchaComposition { isLoaded: Ref; instance: Ref; executeRecaptcha: (action: string) => Promise; recaptchaLoaded: () => Promise; }