1import { ExpoConfig } from 'expo/config'; 2import { ConfigPlugin } from 'expo/config-plugins'; 3export type IosProps = { 4 /** 5 * Sets the `com.apple.developer.icloud-container-environment` entitlement which is read by EAS CLI to set 6 * the `iCloudContainerEnvironment` in the `xcodebuild` `exportOptionsPlist`. 7 * 8 * Available options: https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_developer_icloud-container-environment 9 */ 10 iCloudContainerEnvironment?: 'Development' | 'Production'; 11}; 12export declare const withDocumentPickerIOS: ConfigPlugin<IosProps>; 13export declare function setICloudEntitlements(config: Pick<ExpoConfig, 'ios'>, { iCloudContainerEnvironment }: IosProps, { 'com.apple.developer.icloud-container-environment': _env, ...entitlements }: Record<string, any>): Record<string, any>; 14