/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Represents the arguments for the `promptRequest` event of the Inline AI Prompt.
 */
export interface InlineAIPromptRequestEvent {
    /**
     * Represents the user prompt input.
     */
    prompt: string;
    /**
     * Specifies whether the event is triggered by the built-in **Retry** action button.
     */
    isRetry?: boolean;
}
