export interface RegistryEnvelope { schemaVersion: string; updatedAt: string; items: T[]; } export declare function createRegistryEnvelope(items: T[], updatedAt?: string): RegistryEnvelope; export declare function parseRegistryEnvelope(raw: unknown): RegistryEnvelope; export declare function readRegistryEnvelope(path: string): RegistryEnvelope; export declare function writeRegistryEnvelope(path: string, items: T[]): void; export declare function parseConflictRegistryItems(raw: string): T[]; //# sourceMappingURL=registry.d.ts.map