/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * The data for the `animationEnd` event.
 */
export interface AnimationEndEvent {
    /**
     * The value from which the animation starts.
     */
    from: number;
    /**
     * The value to which the animations runs.
     */
    to: number;
}
