/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Defines the layout for the suggestions list.
 *
 * 'scroll' - The list is scrollable when the content overflows.
 * 'wrap' - The list wraps to new lines when space is limited.
 * 'scrollbuttons' - The list is scrollable with navigation buttons when the content overflows.
 */
export type SuggestionsLayoutMode = 'scroll' | 'wrap' | 'scrollbuttons';
/**
 * Defines the layout for the quick actions list.
 *
 * 'scroll' - The list is scrollable when the content overflows.
 * 'wrap' - The list wraps to new lines when space is limited.
 * 'scrollbuttons' - The list is scrollable with navigation buttons when the content overflows.
 */
export type QuickActionsLayoutMode = 'scroll' | 'wrap' | 'scrollbuttons';
