import { InfoPlist } from './IosConfig.types'; import { ExpoConfig } from '../Config.types'; export declare function getOrientation(config: ExpoConfig): "landscape" | "portrait" | "default" | null; export declare const PORTRAIT_ORIENTATIONS: string[]; export declare const LANDSCAPE_ORIENTATIONS: string[]; export declare function setOrientation(config: ExpoConfig, infoPlist: InfoPlist): { UISupportedInterfaceOrientations: string[]; CFBundleShortVersionString?: string | undefined; CFBundleVersion?: string | undefined; CFBundleDisplayName?: string | undefined; CFBundleName?: string | undefined; CFBundleURLTypes?: import("./IosConfig.types").URLScheme[] | undefined; ITSAppUsesNonExemptEncryption?: boolean | undefined; LSApplicationQueriesSchemes?: string[] | undefined; FacebookAppID?: string | undefined; FacebookDisplayName?: string | undefined; FacebookAutoInitEnabled?: boolean | undefined; FacebookAutoLogAppEventsEnabled?: boolean | undefined; FacebookAdvertiserIDCollectionEnabled?: boolean | undefined; GMSApiKey?: string | undefined; };