import { PhosphorIconWeight } from '../consts/icon.consts'; export interface ActionMenuItem { label: string; icon?: string; iconWeight?: PhosphorIconWeight; isDestructive?: boolean; action: () => void; } export interface ActionMenuEntry { isVisible: boolean; item: ActionMenuItem; } export type ActionMenuGroup = ActionMenuItem[];