import { InjectionLocation, SecurityScheme } from './SecuritySchema'; import type { ConverterOptions } from '../../Converter'; import type { Sampler } from '../../Sampler'; import type { Header, OpenAPIV3 } from '@har-sdk/core'; export declare class HttpSecurityScheme extends SecurityScheme { get location(): InjectionLocation; constructor(schema: OpenAPIV3.HttpSecurityScheme, sampler: Sampler, options: ConverterOptions); createCredentials(): Header; }