export interface HttpResult { method: string; hostHash: string; pathHash: string; hostDisplay?: string; urlDisplay?: string; statusCode?: number; contentType?: string; responseSize?: number; tool: string; } export declare class HttpDetector { /** * Try to detect an HTTP request from a shell command and its output. * Returns null if this doesn't look like an HTTP call. */ detect(cmd: string, stdout: string, stderr: string, _exitCode: number): HttpResult | null; } //# sourceMappingURL=HttpDetector.d.ts.map