export interface DaemonRecord { pid: number; port: number; serial: string; address: string; cdpPort: number; castPort: number; startedAt: string; } export declare function registryPath(serial: string): string; export declare function writeRegistry(rec: DaemonRecord): void; export declare function readRegistry(serial: string): DaemonRecord | null; export declare function removeRegistry(serial: string): void; //# sourceMappingURL=registry.d.ts.map