/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { InlineAIPromptOutputAction } from "./output-action.interface";
import { InlineAIPromptOutput } from "./prompt-output.interface";
/**
 * Represents the arguments for the `outputActionClick` event of the Inline AI Prompt.
 */
export interface InlineAIPromptOutputActionClickEvent {
    /**
     * The clicked action.
     */
    action: InlineAIPromptOutputAction;
    /**
     * The output associated with the action click event.
     */
    output: InlineAIPromptOutput;
}
