import { InfoPlist } from './IosConfig.types'; import { ExpoConfig } from '../Config.types'; export declare function getScheme(config: ExpoConfig): string | null; export declare function setScheme(config: ExpoConfig, infoPlist: InfoPlist): InfoPlist; export declare function appendScheme(scheme: string | null, infoPlist: InfoPlist): InfoPlist; export declare function removeScheme(scheme: string | null, infoPlist: InfoPlist): InfoPlist; export declare function hasScheme(scheme: string, infoPlist: InfoPlist): boolean; export declare function getSchemesFromPlist(infoPlist: InfoPlist): string[];