import { SecuritySchemaBase, SecuritySchemaParent } from './SecuritySchemaBase'; import type { HTTPSecuritySchemaAuthentication, HTTPSecuritySchemaModel } from '../types'; import type { Nullable } from '@fresha/api-tools-core'; export declare class HTTPSecuritySchema extends SecuritySchemaBase implements HTTPSecuritySchemaModel { #private; constructor(parent: SecuritySchemaParent); get type(): 'http'; get scheme(): HTTPSecuritySchemaAuthentication; set scheme(value: HTTPSecuritySchemaAuthentication); get bearerFormat(): Nullable; set bearerFormat(value: Nullable); } //# sourceMappingURL=HTTPSecuritySchema.d.ts.map