import type { ExpoConfig, ProjectConfig } from 'expo/config'; import type { HashSource, NormalizedOptions } from '../Fingerprint.types'; export declare function getExpoConfigSourcesAsync(projectRoot: string, config: ProjectConfig | null, loadedModules: string[] | null, options: NormalizedOptions): Promise; export declare function createHashSourceExternalFileAsync({ projectRoot, file, reason, }: { projectRoot: string; file: string; reason: string; }): Promise; export declare function getEasBuildSourcesAsync(projectRoot: string, options: NormalizedOptions): Promise; export declare function getExpoAutolinkingAndroidSourcesAsync(projectRoot: string, options: NormalizedOptions, expoAutolinkingVersion: string): Promise; /** * Gets the patch sources for the `patch-project`. */ export declare function getExpoCNGPatchSourcesAsync(projectRoot: string, options: NormalizedOptions): Promise; export declare function getExpoAutolinkingIosSourcesAsync(projectRoot: string, options: NormalizedOptions, expoAutolinkingVersion: string): Promise; /** * Sort the expo-modules-autolinking android config to make it stable from hashing. */ export declare function sortExpoAutolinkingAndroidConfig(config: Record): Record; /** * Get the props for a config-plugin */ export declare function getConfigPluginProps(config: ExpoConfig, pluginName: string): Props | null;