import { mxCellState } from 'mxgraph'; import MyGraph from './graph'; declare class mxIcon { images: HTMLImageElement[]; graph: MyGraph; iconSize: string; scale: number; handle?: (type: string, evt: MouseEvent, cell: mxCellState) => void; constructor(state: mxCellState); destroy(): void; createRightIcon(state: mxCellState): void; createLeftIcon(state: mxCellState): void; createUpIcon(state: mxCellState): void; createDownIcon(state: mxCellState): void; } export default mxIcon;