import { Node } from '../Node'; import type { Components } from '../Components'; import type { SecuritySchemaModelBase } from '../types'; import type { CommonMarkString, Nullable } from '@fresha/api-tools-core'; export type SecuritySchemaParent = Components; export declare class SecuritySchemaBase extends Node implements SecuritySchemaModelBase { #private; constructor(parent: SecuritySchemaParent); get description(): Nullable; set description(value: Nullable); } //# sourceMappingURL=SecuritySchemaBase.d.ts.map