/// import { IPictureProps } from './interface'; import './index.less'; declare function Picture({ className, width, height, minHeight, disabledDrag, imagePath, rects, isOpenSelect, disabledDrawMenu, menus, hasTool, fullScreenEle, ...props }: IPictureProps): JSX.Element; declare namespace Picture { var defaultProps: { className: string; minHeight: number; disabledDrag: boolean; isOpenSelect: boolean; disabledDrawMenu: boolean; menus: any[]; rects: any[]; hasTool: boolean; }; } export default Picture;