type CacheNamespaceValue = string | number | boolean | null | readonly CacheNamespaceValue[] | { readonly [key: string]: CacheNamespaceValue; }; /** * Build a deterministic cache namespace from a declarative schema description. * Keep the schema close to the cache builders so format changes roll the * namespace automatically instead of relying on a manually bumped constant. */ export declare function createCacheNamespace(scope: string, schema: CacheNamespaceValue, length?: number): string; export {}; //# sourceMappingURL=cache-namespace.d.ts.map