import { ComponentType } from 'react'; import { ConnectedComponent } from 'react-redux'; import { UMLElementRepository } from '../../../services/uml-element/uml-element-repository'; import { AsyncDispatch } from '../../../utils/actions/actions'; import { UMLElementComponentProps } from '../uml-element-component-props'; type StateProps = {}; type DispatchProps = { start: AsyncDispatch; resize: AsyncDispatch; end: AsyncDispatch; }; type Props = UMLElementComponentProps & StateProps & DispatchProps; export declare const resizable: (options?: { preventX: boolean; preventY: boolean; }) => (WrappedComponent: ComponentType) => ConnectedComponent, UMLElementComponentProps>; export {};