import { CommandQueue } from "./CommandQueue.js"; import { CommandPriority } from "./CommandPriority.js"; import { CommandList } from "./CommandList.js"; export declare class CommandExecutor { #private; static log(...data: any[]): void; executingCommand: CommandQueue | null; commandList: CommandList; constructor(autoStart?: boolean); start(): void; stop(): void; add(priv: CommandPriority, command: CommandQueue): void; }