import { ControlModel } from './ControlModel'; export declare class FunctionModel extends ControlModel { name?: string; description: string; get filename(): string; static Match(txt: string): FunctionModel; isRelease(space: number): boolean; toMMD(context: string, space?: number): string; getSubjects(context: string): import("./SubjectInfor").SubjectInfor[]; getShapes(context: string): string[]; }