import { MutableRefObject } from 'react'; interface IDragableProps { nodeRef?: MutableRefObject; disable?: boolean; children?: any; } export declare function getTouchIdentifier(e: any): any; export declare function getTouch(e: any, identifier: any): any; export declare function offsetXYFromParent(evt: any, offsetParent: any, scale: any): { x: number; y: number; }; export declare function outerHeight(node: any): any; export declare function outerWidth(node: any): any; export declare function Drag(props: IDragableProps): import("react/jsx-runtime").JSX.Element; export {};