import type { HarRequest } from "httpsnippet-lite"; import type { ApiAuth } from "../../client/APIV1Read"; import { type AuthSchemeId, type EndpointDefinition, type ExampleEndpointCall, type ExampleEndpointRequest } from "../"; import type { BasicAuthInfo } from "./HttpSnippetConverter"; export declare function getHarRequest(endpoint: EndpointDefinition, example: ExampleEndpointCall, auths: Record, requestBody: ExampleEndpointRequest | undefined): HarRequest; /** * Extract basic auth info from an endpoint's auth scheme, if present. * Returns the placeholder username and password names used in HAR headers. */ export declare function getHarRequestBasicAuth(endpoint: EndpointDefinition, auths: Record): BasicAuthInfo | undefined; //# sourceMappingURL=get-har-request.d.ts.map