1export declare function hasCustomScheme(): boolean; 2/** 3 * Collect a list of platform schemes from the manifest. 4 * 5 * This method is based on the `Scheme` modules from `@expo/config-plugins` 6 * which are used for collecting the schemes before prebuilding a native app. 7 * 8 * - iOS: scheme -> ios.scheme -> ios.bundleIdentifier 9 * - Android: scheme -> android.scheme -> android.package 10 */ 11export declare function collectManifestSchemes(): string[]; 12/** 13 * Ensure the user has linked the expo-constants manifest in bare workflow. 14 */ 15export declare function hasConstantsManifest(): boolean; 16export declare function resolveScheme(options: { 17 scheme?: string; 18 isSilent?: boolean; 19}): string; 20//# sourceMappingURL=Schemes.d.ts.map