UNPKG

react-box-tools

Version:

Box tools react components, utils and hooks

18 lines (12 loc) 473 B
import { JSX } from 'react/jsx-runtime'; import { RefObject } from 'react'; export declare const MoveElement: (props: MoveElementProps) => JSX.Element | null; export declare interface MoveElementProps { elementRef: RefObject<HTMLElement>; } export declare const ShakeElement: (props: ShakeElementProps) => JSX.Element | null; export declare interface ShakeElementProps { elementRef: RefObject<HTMLElement>; className: string; } export { }