import { NativeModule, requireNativeModule } from 'expo-modules-core'; import type { Directory, File, DownloadOptions, PathInfo } from './ExpoFileSystem.types'; declare class ExpoFileSystemModule extends NativeModule { FileSystemDirectory: typeof Directory; FileSystemFile: typeof File; downloadFileAsync( url: string, destination: File | Directory, options?: DownloadOptions ): Promise; pickDirectoryAsync(initialUri?: string): Promise; pickFileAsync(initialUri?: string, mimeType?: string): Promise; info(uri: string): PathInfo; totalDiskSpace: number; availableDiskSpace: number; documentDirectory: string; cacheDirectory: string; bundleDirectory: string; appleSharedContainers?: Record; } export default requireNativeModule('FileSystem');