import { FunctionComponent } from 'react'; import { ModalProps } from 'antd/lib/modal'; export interface DraggableModalProps extends ModalProps { initialWidth?: number | string | any; initialHeight?: number | string | any; } export declare const DraggableModal: FunctionComponent;