import type { GetTCDataCommand } from './command/GetTCDataCommand.js'; import type { CommandCallback } from './command/CommandCallback.js'; interface EventItem { callback: CommandCallback; param?: any; next?: CommandCallback; } export declare const registerGetTCDataCommand: (ctor: typeof GetTCDataCommand) => void; export declare class EventListenerQueue { private eventQueue; private queueNumber; add(eventItems: EventItem): number; remove(listenerId: number): boolean; exec(): void; clear(): void; get size(): number; } export {};