/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Defines the group for an ActionSheet item.
 *
 * - `top`&mdash;Renders the item above the separator.
 * - `bottom`&mdash;Renders the item below the separator.
 */
export type ActionSheetItemGroup = 'top' | 'bottom';
