/** * ZUI Animations Module * Exports all animation-related functionality */ export { cubicBezier, linear, easeIn, easeOut, easeInOut, easeInQuad, easeOutQuad, easeInOutQuad, easeInCubic, easeOutCubic, easeInOutCubic, easeOutBounce, easeOutElastic, easingFunctions, getEasing, animationDurations, getDuration, getDecelerationDuration, } from './easing'; export type { AnimationDuration } from './easing'; export { Animator, animator, fadeIn, fadeOut, scale, pressedAnimation, releasedAnimation, toastEnter, toastExit, } from './Animator'; export type { Animation, AnimatorOptions } from './Animator'; //# sourceMappingURL=index.d.ts.map