export interface RegisteredProject { readonly rootPath: string; readonly name: string; readonly lastSeen: string; readonly harnessVersion?: string; } export declare function registerProject(rootPath: string, harnessVersion?: string): Promise; export declare function listProjects(): Promise; export declare function unregisterProject(rootPath: string): Promise; //# sourceMappingURL=project-registry.d.ts.map