export declare class HttpRequest { baseUrl: string; constructor(option?: { baseUrl: string; } | string); get(url?: string, query?: {}): Promise; post(url: string, body: any): Promise; }