import { Request, RequestOptions } from './request';
export declare class http {
    static request(request: Request): Promise<any>;
    static get(options: RequestOptions): Promise<any>;
    static post(options: RequestOptions, body: string): Promise<any>;
    static put(options: RequestOptions, body: string): Promise<any>;
    static delete(options: RequestOptions): Promise<any>;
}
