/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Describes the output returned for a prompt.
 */
export interface InlineAIPromptOutput {
    /**
     * The unique identifier for the output.
     */
    id: number | string;
    /**
     * The generated text content.
     */
    output: string;
    /**
     * The prompt that starts the output generation.
     */
    prompt: string;
    /**
     * The command ID if the prompt generation is triggered by a command.
     */
    commandId?: string | number;
}
