/// import { MenuRectType } from '../../interface'; import './index.less'; interface IDrawRectProps { rect: number[]; canRenderMenu?: boolean; containerDom: HTMLDivElement; onMenuClick: (options: MenuRectType) => void; menus: MenuRectType[]; getRectImage: (rect: number[]) => string; } declare function DrawRect({ rect, canRenderMenu, containerDom, onMenuClick, menus, getRectImage }: IDrawRectProps): JSX.Element; export default DrawRect;