import { ControlModel } from './ControlModel'; import { SubjectInfor } from './SubjectInfor'; export declare class NoteModel extends ControlModel { action: string; description: string; subjects: string[]; constructor(); isRelease(_space: number): boolean; getSubjects(_context: string): SubjectInfor[]; getShapes(_context: string): string[]; static Match(txt: string): NoteModel; toMMD(context: string, space?: number): string; }