1import { ExpoConfig } from '@expo/config-types';
2import { InfoPlist } from './IosConfig.types';
3export declare const withScheme: import("..").ConfigPlugin<void>;
4export declare function getScheme(config: {
5    scheme?: string | string[];
6}): string[];
7export declare function setScheme(config: Partial<Pick<ExpoConfig, 'scheme' | 'ios'>>, infoPlist: InfoPlist): InfoPlist;
8export declare function appendScheme(scheme: string | null, infoPlist: InfoPlist): InfoPlist;
9export declare function removeScheme(scheme: string | null, infoPlist: InfoPlist): InfoPlist;
10export declare function hasScheme(scheme: string, infoPlist: InfoPlist): boolean;
11export declare function getSchemesFromPlist(infoPlist: InfoPlist): string[];
12