/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * The settings for the opening and closing animations of the ActionSheet ([see example]({% slug animations_actionsheet %})).
 */
export interface ActionSheetAnimation {
    /**
     * Defines the duration of the ActionSheet opening and closing animations in milliseconds.
     */
    duration?: number;
}
