import CreatorTools from "./CreatorTools";
export default class CommandRunner {
    static runCustomTool(creatorTools: CreatorTools, commandNumber: number): Promise<void>;
    static runCommandText(creatorTools: CreatorTools, commandText: string): Promise<void>;
    static runCommandList(creatorTools: CreatorTools, commandItems: string[]): Promise<any[]>;
}
