interface RecaptchaResponse {
    success: boolean;
    challenge_ts?: string;
    hostname?: string;
    'error-codes'?: string[];
    error_message?: string;
}
declare function verifyRecaptcha(secret: string, response: string, remote_ip?: string): Promise<RecaptchaResponse>;
export { verifyRecaptcha };
