import { type BaseBlockModel, type Page } from '@revesuite/store'; import type { TemplateResult } from 'lit'; export type SlashItem = { name: string; groupName: string; alias?: string[]; icon: TemplateResult<1>; showWhen?: (model: BaseBlockModel) => boolean; disabled?: boolean; action: ({ page, model }: { page: Page; model: BaseBlockModel; }) => void; }; export declare const menuGroups: { name: string; items: SlashItem[]; }[]; //# sourceMappingURL=config.d.ts.map