import { requireNativeModule, NativeModule } from 'expo-modules-core'; type ExpoLinkingModuleEvents = { onURLReceived(url: string): void; }; declare class ExpoLinkingNativeModule extends NativeModule { getLinkingURL(): string | null; } const ExpoLinking = requireNativeModule('ExpoLinking'); export default ExpoLinking;