export { webRequest };
export declare enum Method {
    GET = "GET",
    POST = "POST",
    PUT = "PUT",
    PATCH = "PATCH",
    DELETE = "DELETE"
}
declare function webRequest(hostname: string, path: string, postData: any, headers: any, method: Method): Promise<string>;
