import { EditorType } from './EditorType';
export interface TargetEditor {
    controlId: string;
    controlName: string;
    type?: EditorType;
    editorInstance?: any;
}
