import { type HarRequest, type TargetId } from "httpsnippet-lite"; export interface BasicAuthInfo { username: string; password: string; } export declare class HttpSnippetConverter { private readonly snippet; private readonly basicAuth; constructor(harRequest: HarRequest, basicAuth?: BasicAuthInfo); convert(targetId: TargetId, clientId: string): Promise; convertAll(): Promise<{ targetId: TargetId; code: string; }[]>; private addImports; } //# sourceMappingURL=HttpSnippetConverter.d.ts.map