1*082815dcSEvan Baconimport { ExpoConfig } from '@expo/config-types'; 2*082815dcSEvan Baconimport { ConfigPlugin } from '../Plugin.types'; 3*082815dcSEvan Baconexport declare const withVersion: ConfigPlugin; 4*082815dcSEvan Bacon/** Sets a numeric version for a value in the project.gradle buildscript.ext object to be at least the provided props.minVersion, if the existing value is greater then no change will be made. */ 5*082815dcSEvan Baconexport declare const withBuildScriptExtMinimumVersion: ConfigPlugin<{ 6*082815dcSEvan Bacon name: string; 7*082815dcSEvan Bacon minVersion: number; 8*082815dcSEvan Bacon}>; 9*082815dcSEvan Baconexport declare function setMinBuildScriptExtVersion(buildGradle: string, { name, minVersion }: { 10*082815dcSEvan Bacon name: string; 11*082815dcSEvan Bacon minVersion: number; 12*082815dcSEvan Bacon}): string; 13*082815dcSEvan Baconexport declare function getVersionName(config: Pick<ExpoConfig, 'version'>): string | null; 14*082815dcSEvan Baconexport declare function setVersionName(config: Pick<ExpoConfig, 'version'>, buildGradle: string): string; 15*082815dcSEvan Baconexport declare function getVersionCode(config: Pick<ExpoConfig, 'android'>): number; 16*082815dcSEvan Baconexport declare function setVersionCode(config: Pick<ExpoConfig, 'android'>, buildGradle: string): string; 17