/** * HTTP transport layer with retry logic */ export declare class HttpTransport { private client; constructor(serverUrl: string, apiKey: string, timeout?: number, retries?: number); post(path: string, data: any): Promise; get(path: string): Promise; } //# sourceMappingURL=http.d.ts.map