import type { Editor } from "../../types.js"; import { FigureDialog } from "../../dialogs/index.js"; export declare const figureMenuModel: () => { content: ({ title: string; type: string; tooltip: string; order: number; action: (editor: Editor) => boolean; disabled: (editor: Editor) => any; icon?: undefined; } | { title: string; type: string; icon: string; tooltip: string; order: number; action: (editor: Editor) => void; disabled: (editor: Editor) => any; })[]; }; export declare const figureWidthMenuModel: () => { content: { title: string; type: string; order: number; value: string; action: (figureDialog: InstanceType) => void; selected: boolean; }[]; }; //# sourceMappingURL=model.d.ts.map