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