import { CommandQueueExecuteStatus } from "./CommandQueueExecuteStatus.js"; import { CommandSender } from "./CommandSender.js"; /** * contains command queue infos */ export declare class CommandQueue { #private; sender: CommandSender; command: string; get status(): CommandQueueExecuteStatus; get result(): any; resolveResult(commandResult: any): void; reject(err: any): void; constructor(sender: CommandSender, command: string); onresolve(callback: (result: any) => void): void; onreject(callback: (result: any) => void): void; onfulfilled(callback: (result: any) => void): void; }