import { ConfigUploaderModel } from './component-uploader.model';
export interface ConfigWysiwygModel extends ConfigUploaderModel {
    apiKey: string;
    params?: InitWysiwyg;
}
export interface WysiwygConfigSection {
    [key: string]: ConfigWysiwygModel;
}
export interface InitWysiwyg {
    height?: number;
    menubar?: boolean;
    inline?: boolean;
    plugins?: PluginsAvailable[];
    toolbar?: ToolbarOptions[][];
    quickbars?: ToolbarOptions[][];
}
export declare type PluginsAvailable = 'advlist' | 'autolink' | 'lists' | 'link' | 'image' | 'charmap' | 'print' | 'preview' | 'anchor' | 'searchreplace' | 'visualblocks' | 'code' | 'fullscreen' | 'insertdatetime' | 'media' | 'table' | 'paste' | 'code' | 'help' | 'wordcount';
export declare type ToolbarOptions = 'undo' | 'redo' | 'alignleft' | 'aligncenter' | 'alignright' | 'alignjustify';
