import type { CuiIcon } from '@cuby-ui/icons'; export interface CuiContextMenuItem { readonly label: string; readonly icon?: CuiIcon; readonly color?: string; readonly command?: () => void; }