import { PropsWithChildren, FC } from 'react';
interface MoveProps extends PropsWithChildren {
    cursor?: string;
    disabled?: boolean;
    preventRightClick: boolean;
    disableText: boolean;
    threshold: number;
    onMoveStart: (event: any) => void;
    onMove: (event: any) => void;
    onMoveCancel: (event: any) => void;
    onMoveEnd: (event: any) => void;
}
export declare const Move: FC<Partial<MoveProps>>;
export {};
