import type { WorkspaceContextMenuItem } from '../../workspace/components/workspace-context-menu'; import type { PresentationEditorCanCommands, PresentationEditorCommands } from './presentation-command-types'; type PresentationContextCan = Pick; type PresentationContextCommands = Pick; export declare function presentationCoreContextMenuItems({ can, commands, slideId, target, }: { can: PresentationContextCan; commands: PresentationContextCommands; slideId: string; target: 'slide' | 'element'; }): WorkspaceContextMenuItem[]; export {};