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