import { Description } from "./Description";
import { ToolCommandArgumentDescription } from "./ToolCommandArgumentDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare class ToolCommandDescription extends Description {
    static $t: Type;
    protected get_type(): string;
    get type(): string;
    private static __marshalByValue;
    private static __marshalByValueAlias;
    constructor();
    private o;
    get commandId(): string;
    set commandId(a: string);
    private k;
    get argumentsList(): ToolCommandArgumentDescription[];
    set argumentsList(a: ToolCommandArgumentDescription[]);
}
