/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * @hidden
 */
export declare enum Dir {
    Next = 1,
    Prev = -1
}
/**
 * Represents the available pager overlays of the ScrollView.
 */
export type ScrollViewPagerOverlay = 'dark' | 'light' | 'none';
/**
 * @hidden
 */
export type AnimationState = "left" | "right" | "center";