import type { ConeEntry, Registry } from '../_cloud_core/src/index.js'; export declare class FileRegistry implements Registry { private readonly filePath; constructor(filePath: string); static defaultPath(): string; list(): Promise; append(entry: ConeEntry): Promise; update(sandboxId: string, patch: Partial): Promise; remove(sandboxId: string): Promise; findByNameOrId(query: string): Promise; private read; private write; }