export interface RecaptchaPluginOptions {
    siteKey?: string;
    action?: string;
}
export interface RecaptchaComponentProps {
    siteKey?: string;
    action?: string;
    modelValue?: string;
}
