import type { ModalProps } from '../modal';
import type { RequireKeys } from '../types';
export type DragModalProps = RequireKeys<ModalProps, 'title'>;
/** @see [easy-antd-modal#DragModal](https://github.com/Wxh16144/easy-antd-modal/blob/master/src/drag-modal/index.tsx) */
declare function DragModal(props: DragModalProps): import("react/jsx-runtime").JSX.Element;
export default DragModal;
