import { Callback } from "./core/callback";
import { Command } from "./core/command";
export declare class Batch implements Command {
    error: Error;
    private _commandTable;
    private _commands;
    private _executed;
    getCommand(id: number): Command;
    addCommand(id: number, command: Command): void;
    execute(callback: Callback): void;
}
