1import { Android, ExpoConfig, IOS } from '@expo/config-types';
2export declare type ExpoConfigUpdates = Pick<ExpoConfig, 'sdkVersion' | 'owner' | 'runtimeVersion' | 'updates' | 'slug'>;
3export declare function getExpoUpdatesPackageVersion(projectRoot: string): string | null;
4export declare function getUpdateUrl(config: Pick<ExpoConfigUpdates, 'owner' | 'slug' | 'updates'>, username: string | null): string | null;
5export declare function getNativeVersion(config: Pick<ExpoConfig, 'version'> & {
6    android?: Pick<Android, 'versionCode'>;
7    ios?: Pick<IOS, 'buildNumber'>;
8}, platform: 'android' | 'ios'): string;
9/**
10 * Compute runtime version policies.
11 * @return an expoConfig with only string valued platform specific runtime versions.
12 */
13export declare const withRuntimeVersion: (config: ExpoConfig) => ExpoConfig;
14export declare function getRuntimeVersionNullable(...[config, platform]: Parameters<typeof getRuntimeVersion>): string | null;
15export declare function getRuntimeVersion(config: Pick<ExpoConfig, 'version' | 'runtimeVersion' | 'sdkVersion'> & {
16    android?: Pick<Android, 'versionCode' | 'runtimeVersion'>;
17    ios?: Pick<IOS, 'buildNumber' | 'runtimeVersion'>;
18}, platform: 'android' | 'ios'): string | null;
19export declare function getSDKVersion(config: Pick<ExpoConfigUpdates, 'sdkVersion'>): string | null;
20export declare function getUpdatesEnabled(config: Pick<ExpoConfigUpdates, 'updates'>): boolean;
21export declare function getUpdatesTimeout(config: Pick<ExpoConfigUpdates, 'updates'>): number;
22export declare function getUpdatesCheckOnLaunch(config: Pick<ExpoConfigUpdates, 'updates'>, expoUpdatesPackageVersion?: string | null): 'NEVER' | 'ERROR_RECOVERY_ONLY' | 'ALWAYS';
23export declare function getUpdatesCodeSigningCertificate(projectRoot: string, config: Pick<ExpoConfigUpdates, 'updates'>): string | undefined;
24export declare function getUpdatesCodeSigningMetadata(config: Pick<ExpoConfigUpdates, 'updates'>): NonNullable<ExpoConfigUpdates['updates']>['codeSigningMetadata'];
25export declare function getUpdatesCodeSigningMetadataStringified(config: Pick<ExpoConfigUpdates, 'updates'>): string | undefined;
26