import { type ConfigPlugin } from '@expo/config-plugins'; /** * Inject opt-in `react-native-ble-plx/Restoration` into a Podfile. * Pure string transform — unit-tested without pod install. */ export declare function injectRestorationPodLine(podfile: string, pkgName: string): string; /** * Remove Restoration subspec opt-in from a Podfile (marker block and/or explicit pod lines). * Pure string transform — unit-tested without pod install. Idempotent when already absent. */ export declare function removeRestorationPodLine(podfile: string, pkgName: string): string; /** Info.plist pure helpers for unit tests and withInfoPlist mods. */ export declare function setBlePlxRestoreIdentifier(infoPlist: Record, identifier: string): Record; export declare function clearBlePlxRestoreIdentifier(infoPlist: Record): Record; export declare const withBLERestorationPodfile: ConfigPlugin<{ pkgName: string; enable: boolean; }>;