import { FC } from 'react'; import { ReactShape } from '@antv/x6-react-shape'; import './FoldTools.less'; interface FoldToolsProps { node: ReactShape; toggleVisible: (node: any, flag: boolean) => void; visible: boolean; data: any; hasChild: boolean; setHideNodeFunc: (isHide: boolean, data: any) => void; } declare const FoldTools: FC; export declare const createFoldTools: (Comp: any) => (props: any) => JSX.Element; export default FoldTools;