import { Document } from '../../core/models/Document'; import { NewSecuritySchemeCommand } from './NewSecuritySchemeCommand'; /** * A command used to create a new security scheme in an aaidocument. * @author c.desc2@gmail.com * @extends NewSecuritySchemeCommand * @class */ export declare class NewSecuritySchemeCommand_Aai20 extends NewSecuritySchemeCommand { _nullComponents: boolean; constructor(scheme?: any); /** * @see io.apicurio.datamodels.cmd.ICommand#execute(Document) * @param {Document} document */ execute(document: Document): void; /** * @see io.apicurio.datamodels.cmd.ICommand#undo(Document) * @param {Document} document */ undo(document: Document): void; }