import { BasicNode } from '../BasicNode'; import type { SecuritySchemeType } from '../../types'; import type { 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 abstract class SecuritySchemeBase extends BasicNode { #private; constructor(parent: SecuritySchemaModelParent, type: T); get type(): T; get description(): Nullable; set description(value: Nullable); } //# sourceMappingURL=SecuritySchemeBase.d.ts.map