export interface HttpResponse { data: T; } export declare class HttpClient { get(url: string): Promise>; post(url: string, body?: unknown): Promise>; delete(url: string): Promise; getText(url: string): Promise; private request; private doFetch; }