import { RotateOptions, BounceOptions, DragOptions } from '../core';
export declare function useReactAnimations(): {
    rotate: (el: HTMLElement, options?: RotateOptions) => void;
    bounce: (el: HTMLElement, options?: BounceOptions) => void;
    enableDrag: (el: HTMLElement, options?: DragOptions) => () => void;
};
