/// import { RectType } from '../../interface'; import './index.less'; interface IDefaultRectsProps { rects: RectType[]; containerDom: HTMLDivElement; onClickRect?: (item: RectType & { base64: string; }) => void; getRectImage: (rect: number[]) => string; } declare function DefaultRects({ rects, containerDom, onClickRect, getRectImage }: IDefaultRectsProps): JSX.Element; export default DefaultRects;