import type { Editor } from "../../types.js"; interface MenuModelItem { title: string; type: string; tooltip: string; order: number; action: (editor: Editor) => boolean; disabled?: (editor: Editor) => boolean; } export declare const codeBlockMenuModel: () => { content: MenuModelItem[]; }; export {}; //# sourceMappingURL=model.d.ts.map