export declare type AttributeKeyType = 'left' | 'right' | 'top' | 'bottom'; export interface useMoveProps { attributeKey: AttributeKeyType[]; ref: { current?: HTMLElement; }; relativeRef: { current?: HTMLElement; }; } declare const useMove: (props: useMoveProps) => { moving: boolean; }; export default useMove;