/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Defines the interface for the Inline AI Prompt output.
 */
export interface InlineAIPromptOutput {
    /**
     * Represents the unique identifier of the prompt output.
     */
    id: number | string;
    /**
     * Represents the text content of the prompt output.
     */
    output: string;
    /**
     * Represents the prompt that initiates the output generation.
     */
    prompt: string;
    /**
     * Specifies  a command ID, if the prompt generation is triggered by a command.
     */
    commandId?: string | number;
}
