import { ConfigPlugin } from '@expo/config-plugins'; /** * Expo config plugin for react-native-background-fetch. * * Currently a no-op: TSBackgroundFetch now calls didFinishLaunching * autonomously on iOS, and Android dependencies resolve via Maven Central. * * This stub keeps the plugin infrastructure in place so future platform * configuration (permissions, Info.plist keys, etc.) can be added without * breaking existing app.json entries: * * "plugins": ["react-native-background-fetch"] */ declare const withBackgroundFetch: ConfigPlugin<{} | void>; export default withBackgroundFetch;