1import { ExpoConfig } from '@expo/config-types'; 2type ConfigPluginProps = { 3 supportsRTL?: boolean; 4 allowDynamicLocaleChangesAndroid?: boolean; 5}; 6declare function withExpoLocalization(config: ExpoConfig, data?: ConfigPluginProps): ExpoConfig; 7export default withExpoLocalization; 8