import { DrawerProps } from 'antd';
import React from 'react';
import type { ControlPosition } from 'react-draggable';
export interface DragPanelProps extends DrawerProps {
    /** 面板默认位置 */
    defaultPosition?: ControlPosition;
    /** 面板位置改变的回调函数 */
    onPositionChange?: (position: ControlPosition) => void;
}
export declare const DragPanel: React.FC<DragPanelProps>;
