import https from 'https'; export interface HttpClient { create(config: HttpClientConfig): T; } export interface HttpClientConfig { headers: Record; timeout: number; agent?: https.Agent; } //# sourceMappingURL=HttpClient.d.ts.map