import { DataSourceCache } from "./cache.js"; import type { DataModel, DataSource } from "./types.js"; declare function useCachedDataSource(dataSource: DataSource, cache: DataSourceCache | null): DataSource; export { useCachedDataSource };