import { Ctx } from '@milkdown/kit/ctx'; /** Type for slash menu item configuration (matches Crepe's SlashMenuItem) */ export interface SlashMenuItemConfig { label: string; icon: string; onRun: (ctx: Ctx) => void; } /** Slash menu item for inserting file attachments (PDF, Word, Excel, PowerPoint). */ export declare const AttachmentSlashMenuItems: { file: () => SlashMenuItemConfig; };