/**----------------------------------------------------------------------------------------- * 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'—Renders a single-line input element. * - 'multi'—Renders a multi-line textarea element. * - 'auto'—Automatically switches between single-line and multi-line modes based on the content. */ export type PromptBoxMode = 'single' | 'multi' | 'auto';