import { NativeModule, requireNativeModule } from 'expo'; import { ExpoDownloadDetectModuleEvents, FileDetectedEvent } from './ExpoDownloadDetect.types'; declare class ExpoDownloadDetectModule extends NativeModule { startWatching(): void; stopWatching(): void; getRecentDownloads(): Promise; } export default requireNativeModule('ExpoDownloadDetect');