import { SecuritySchemeBase } from './SecuritySchemeBase'; import type { HTTPAuthSchema, HTTPSecuritySchemaModel, SecuritySchemaModelParent } from '../types'; import type { Nullable } from '@fresha/api-tools-core'; /** * @see http://spec.openapis.org/oas/v3.0.3#security-scheme-object */ export declare class HTTPSecurityScheme extends SecuritySchemeBase<'http'> implements HTTPSecuritySchemaModel { #private; constructor(parent: SecuritySchemaModelParent, scheme: HTTPAuthSchema); get scheme(): HTTPAuthSchema; set scheme(value: HTTPAuthSchema); get bearerFormat(): Nullable; set bearerFormat(value: Nullable); } //# sourceMappingURL=HTTPSecurityScheme.d.ts.map