interface Invocation {
    resolve: (value: string) => void;
    reject: (reason: string) => void;
}
declare class InvokeQueue {
    private queue;
    push(invoke: Invocation): string;
    get(id: string): Invocation;
}
export declare const invokeQueue: InvokeQueue;
export {};
