/** * Web / iOS no-op fallback. Every method either rejects with * `UnsupportedPlatformError` or returns a sane default. Keeping a stub here * lets consumers build for web / iOS without a Metro / EAS error. */ import { NativeModule } from 'expo'; import type { ExpoTransactionSmsReaderEvents, RawSmsMessage, SmsPermissionStatus } from './ExpoTransactionSmsReader.types'; declare class ExpoTransactionSmsReaderModuleStub extends NativeModule { getPermissionStatusAsync(): Promise; requestPermissionsAsync(): Promise; openAppSettings(): void; startListening(): Promise; stopListening(): Promise; isListening(): boolean; getRecentMessages(): Promise; } declare const _default: ExpoTransactionSmsReaderModuleStub; export default _default; //# sourceMappingURL=ExpoTransactionSmsReaderModule.web.d.ts.map