import type { TLinkedApiResponse } from '../types/responses'; export declare abstract class HttpClient { abstract get(url: string): Promise>; abstract post(url: string, data?: unknown): Promise>; abstract delete(url: string): Promise>; } //# sourceMappingURL=http-client.d.ts.map