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