/**
 * @license
 *-------------------------------------------------------------------------------------------
 * Copyright © 2026 Progress Software Corporation. All rights reserved.
 * Licensed under commercial license. See LICENSE.md in the package root for more information
 *-------------------------------------------------------------------------------------------
 */
import { Animation, AnimationProps } from './Animation.js';
import { AnimationChild, AnimationChildHandle, AnimationChildProps } from './AnimationChild.js';
import { Fade, FadeProps } from './Fade.js';
import { Expand, ExpandDirection, ExpandProps } from './Expand.js';
import { Push, PushDirection, PushProps } from './Push.js';
import { Slide, SlideDirection, SlideProps } from './Slide.js';
import { Zoom, ZoomDirection, ZoomProps } from './Zoom.js';
import { Reveal, RevealDirection, RevealProps } from './Reveal.js';
import { useAnimation } from './hooks/useAnimation.js';
export { Animation, AnimationProps, AnimationChild, AnimationChildHandle, AnimationChildProps, Fade, FadeProps, Expand, ExpandProps, ExpandDirection, Push, PushProps, PushDirection, Slide, SlideProps, SlideDirection, Zoom, ZoomProps, ZoomDirection, Reveal, RevealProps, RevealDirection, useAnimation };
