import { RequestOptions } from 'http';
interface Options extends RequestOptions {
    protocol?: 'http' | 'https';
}
export declare const request: ({ protocol, ...options }: Options) => Promise<string>;
export {};
