import type { Editor } from "../../types.js"; interface MenuItem { type: string; title: string; icon?: string; order: number; action: (editor: Editor) => boolean | void; hidden?: (editor: Editor) => boolean; selected?: (editor: Editor) => boolean; disabled?: (editor: Editor) => boolean; } export declare const selectionMenuModel: () => { content: MenuItem[]; }; export {}; //# sourceMappingURL=model.d.ts.map