import { Registry, ActorLocation } from "./registry.js"; export declare class LocalRegistry implements Registry { private readonly registry; private readonly reservations; connect(): Promise; disconnect(): Promise; register(name: string, nodeId: string, actorId: string): Promise; unregister(name: string): Promise; lookup(name: string): Promise; getNodeActors(nodeId: string): Promise; reserveName(name: string, nodeId: string, ttlMs?: number): Promise<{ reservationId: string; } | null>; confirmReservation(reservationId: string, actorId: string): Promise; releaseReservation(reservationId: string): Promise; private cleanupExpiredReservations; } //# sourceMappingURL=local_registry.d.ts.map