import { ISelectMenu } from "@wangeditor/editor";
export declare const DEFAULT_MENU_LIST: {
    value: string;
    text: string;
    selected: boolean;
}[];
declare const menus: {
    key: string;
    factory: () => ISelectMenu;
    config: {
        list: {
            value: string;
            text: string;
            selected: boolean;
        }[];
    };
}[];
export { menus, };
