export type ContextMenuProps = { width: number; height: number; }; export type ContextMenuData = { show: boolean, x: number, y: number, id: string, setContextMenu: (contextMenu: {show: boolean, x: number, y: number, id: string, displayMode?: string, displayModeOptions?: string[], downloadSVG?: () => void}) => void, displayMode?: string, displayModeOptions?: string[], downloadSVG?: () => void };