import { PropsWithChildren } from 'react'; type AnimateButtonProps = PropsWithChildren<{ type?: 'rotate' | 'slide' | 'scale'; direction?: 'up' | 'down' | 'left' | 'right'; offset?: number; scale?: number | { hover: number; tap: number; }; }>; declare function AnimateButton({ children, type, direction, offset, scale }: AnimateButtonProps): import("react/jsx-runtime").JSX.Element; export { AnimateButton }; export type { AnimateButtonProps }; //# sourceMappingURL=AnimateButton.d.ts.map