import { ExpoConfig, modifyConfigAsync } from '@expo/config'; import { Env } from '@expo/eas-build-job'; export type PublicExpoConfig = Omit & { ios?: Omit; android?: Omit; updates?: Omit; }; export interface ExpoConfigOptions { env?: Env; skipSDKVersionRequirement?: boolean; skipPlugins?: boolean; } export declare function createOrModifyExpoConfigAsync(projectDir: string, exp: Partial, readOptions?: { skipSDKVersionRequirement?: boolean; }): ReturnType; export declare function getPrivateExpoConfigAsync(projectDir: string, opts?: ExpoConfigOptions): Promise; export declare function ensureExpoConfigExists(projectDir: string): void; export declare function isUsingStaticExpoConfig(projectDir: string): boolean; export declare function getPublicExpoConfigAsync(projectDir: string, opts?: ExpoConfigOptions): Promise;