/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Specifies the PromptBox modes.
 *
 * - 'single'&mdash;Renders a single-line input element.
 * - 'multi'&mdash;Renders a multi-line textarea element.
 * - 'auto'&mdash;Automatically switches between single-line and multi-line modes based on the content.
 */
export type PromptBoxMode = 'single' | 'multi' | 'auto';
