/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * The layout of the files in the message bubble.
 *
 * 'horizontal' - Files are laid out in a row and are horizontally scrollable.
 * 'vertical' - Files are displayed in a vertical stack.
 * 'wrap' - Files wrap to new lines when space is limited.
 */
export type FilesLayoutMode = 'horizontal' | 'vertical' | 'wrap';
