import { createTypedCollectionSchemas } from './builder.js'; import type { CollectionDefinition } from '../../@types/index.js'; type TypedSchemaSet = ReturnType; export declare const getCollectionSchemasForPath: (path: string) => TypedSchemaSet; export declare const getCollectionSchemas: (collection: CollectionDefinition) => TypedSchemaSet; export declare const getTypedCollectionSchemasForPath: typeof getCollectionSchemasForPath; export declare const getTypedCollectionSchemas: typeof getCollectionSchemas; export declare const clearSchemaCache: (collectionPath?: string) => void; export declare const getCacheStats: () => { size: number; keys: string[]; }; export {};