import { Base, Type } from "./type";
import { ToolCommandArgument } from "./ToolCommandArgument";
/**
 * @hidden
 */
export declare class ToolCommand extends Base {
    static $t: Type;
    constructor();
    private _commandId;
    get commandId(): string;
    set commandId(a: string);
    private _argumentsList;
    get argumentsList(): ToolCommandArgument[];
    set argumentsList(a: ToolCommandArgument[]);
}
