import type { ConfigPlugin } from '@expo/config-plugins'; import type { XCParseXcodeProject } from './withXCParseXcodeProject'; type IosDeploymentTargetConfigPlugin = ConfigPlugin<{ deploymentTarget: string; }>; export declare const withIosDeploymentTarget: IosDeploymentTargetConfigPlugin; export declare function updateDeploymentTargetPodfile(projectRoot: string, contents: string, deploymentTarget: string): Promise; export declare function shouldUpdateDeployTargetPodfileAsync(projectRoot: string, targetVersion: string): Promise; export declare function lookupReactNativeMinIosVersionSupported(projectRoot: string): Promise; export declare function updateDeploymentTargetXcodeProject(project: XCParseXcodeProject, deploymentTarget: string): XCParseXcodeProject; export {};