export declare const ConfigEditor: IConfigEditor; export interface IConfigEditor { toolbar?: any[]; startupFocus?: boolean | 'start' | 'end'; toolbarLocation?: 'top' | 'bottom'; language?: string; plugins?: string; extraAllowedContent?: string; autoGrow_minHeight?: number; autoGrow_maxHeight?: number; autoGrow_onStartup?: boolean; removeDialogTabs?: string; embed_provider?: string; mentions?: IMentions[]; allowedContent?: string; removeButtons?: string; } export interface IMentions { feed: Function; throttle: number; itemTemplate: string; outputTemplate: string; minChars: number; marker: string; }