interface HarParameterObject { name: string; value: string; } interface HarPostData { mimeType: string; text?: string; params?: HarParameterObject[]; } interface HarRequest { method: string; url: string; httpVersion: string; cookies: any[]; headers: HarParameterObject[]; queryString: HarParameterObject[]; postData?: HarPostData; headersSize: number; bodySize: number; comment?: string; } interface EndpointHarInfo { method: string; url: string; description: string; hars: HarRequest[]; } export declare const createHarParameterObjects: ({ name, in: location, style, explode }: any, value: any) => HarParameterObject[]; export declare const getAll: (openApi: any) => EndpointHarInfo[]; export declare const getEndpoint: (openApi: any, path: string, method: string, queryParamValues?: Record) => HarRequest[]; export {}; //# sourceMappingURL=openapi-to-har.d.ts.map