import { Client } from 'ts-nats'; export declare class NodeTracker { readonly selfId: string; readonly nc: Client; onNodeConnected?: (src: string) => void; onNodeDisconnected?: (src: string) => void; constructor(selfId: string, nc: Client); start(): Promise; }