export interface LoadedPersistedAtomRegistry { found: boolean; state: Record; } export declare function derivePersistedAtomRegistryPath(): string; export declare function loadPersistedAtomRegistry(registryPath: string): Promise; export declare function savePersistedAtomRegistry(registryPath: string, state: Record): Promise;