/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the Chat suggestions displayed above the message box.
 */
export interface ChatSuggestion {
    /**
     * Sets the unique identifier for the suggestion.
     */
    id: string | number;
    /**
     * Sets the display text for the suggestion.
     */
    text: string;
    /**
     * Sets the optional description for the suggestion.
     */
    description?: string;
    /**
     * Determines whether the suggestion is disabled.
     */
    disabled?: boolean;
}
