import { InjectionToken } from '@angular/core'; export declare const MSG_EDITOR_INJECTIONS: InjectionToken; export declare interface MsgEditor { type: number; validate(): boolean; setDisabled(disabled: boolean): void; resetData(): void; setSelectedTplData(data: any): void; setAutoMathTpl(tplList: Array): void; cancelAutoMathTpl(): void; getMessageData(): any; getMobilePreviewData(): any; }