export type JSONSchema = { $schema?: string; type: string; properties?: Record; required?: string[]; additionalProperties?: boolean; title?: string; [key: string]: unknown; }; export declare class SchemaCacheService { private cache; private readonly cacheDir; constructor(cacheDir?: string); has(cid: string): boolean; private fetchSchema; get(cid: string): Promise; } //# sourceMappingURL=schema-cache.service.d.ts.map