import { DataSource, ManifestStore } from "../storage.mjs"; interface FilesystemDataSourceOptions { rootDir: string; } declare function createFilesystemDataSource(opts: FilesystemDataSourceOptions): DataSource; interface FilesystemManifestStoreOptions { path: string; } declare function createFilesystemManifestStore(opts: FilesystemManifestStoreOptions): ManifestStore; declare function filesystemStats(rootDir: string): Promise<{ files: number; bytes: number; }>; export { FilesystemDataSourceOptions, FilesystemManifestStoreOptions, createFilesystemDataSource, createFilesystemManifestStore, filesystemStats };