/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { SVGIcon } from "@progress/kendo-svg-icons";
/**
 * An interface for the AIPrompt commands rendered in the Command View.
 */
export interface PromptCommand {
    /**
     * The unique identifier of the command.
     */
    id: string | number;
    /**
     * Specifies the command text.
     */
    text?: string;
    /**
     * Specifies the name of the [font icon](slug:icons#icons-list) that will be rendered for the command.
     */
    icon?: string;
    /**
     * Specifies the name of the [SVG icon]({% slug svgicon_list %}) that will be rendered for the command.
     */
    svgIcon?: SVGIcon;
    /**
     * Defines the child commands as an array.
     */
    children?: Array<PromptCommand>;
}
