/**-----------------------------------------------------------------------------------------
* Copyright © 2026 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
 * Arguments for the `promptRequest` event.
 */
export interface InlineAIPromptRequestEvent {
    /**
     * The user prompt input.
     */
    prompt: string;
    /**
     * If `true`, the event is triggered by the built-in **Retry** action button.
     */
    isRetry?: boolean;
}
