/// <reference types="node" />
import { SupportedProtocols } from './recaptcha';
import * as https from 'https';
declare type ResponseBody = any;
export declare type ClientOptions = Omit<https.RequestOptions, 'protocol'> & {
    data?: string;
    timeout?: number;
    protocol?: SupportedProtocols;
};
export declare function request(options: ClientOptions): Promise<ResponseBody>;
export {};
