import { AppJSONConfig, ConfigContext, ExpoConfig } from './Config.types'; declare type RawDynamicConfig = AppJSONConfig | Partial | null; declare type DynamicConfigResults = { config: RawDynamicConfig; exportedObjectType: string; }; export declare function getDynamicConfig(configPath: string, request: ConfigContext): DynamicConfigResults; export declare function getStaticConfig(configPath: string): AppJSONConfig | ExpoConfig | null; export {};