import type { IDAgent } from '../agent/index.js'; export declare class Queue { private agent; private connectedDid; private _star; constructor(options: { agent: IDAgent; connectedDid: string; }); createPeer(): Promise; send(node: any, topic: any, message: any): Promise<{ ok: boolean; timestsamp: number; }>; publish(topic: any, message: any, relayers?: any[]): Promise; subscribe(topic: any, cb: any): Promise; unsubscribe(topic: any): Promise; } //# sourceMappingURL=queue.d.ts.map