/** * Filesystem module exports */ export * from './interfaces.js'; import { ExtendedFileSystem } from './interfaces.js'; /** * Create the appropriate filesystem implementation based on environment * @returns Promise resolving to appropriate filesystem implementation */ export declare function createFS(options?: any): Promise; export { createNodeFS } from './node-fs.js'; export { createLightningFS } from './lightning-fs.js'; export * from './interfaces.js'; //# sourceMappingURL=index.d.ts.map