export interface ModelRegistryEntry { modelId: string; totalSize?: number; quantization?: string; hashAlgorithm?: string; backend?: string; createdAt?: string; savedAtUtc?: string; [key: string]: unknown; } export interface ModelRegistry { models: ModelRegistryEntry[]; } export interface ModelRegistrySaveInfo { backend: 'opfs' | 'indexeddb'; path: string; } export declare function loadModelRegistry(): Promise; export declare function saveModelRegistry(registry: ModelRegistry): Promise; export declare function listRegisteredModels(): Promise; export declare function registerModel(entry: ModelRegistryEntry): Promise; export declare function removeRegisteredModel(modelId: string): Promise;