import { ExpoConfig } from './Config.types'; export declare function resolveModule(request: string, projectRoot: string, exp: Pick): string; export declare function projectHasModule(modulePath: string, projectRoot: string, exp: Pick): string | undefined; export declare function moduleNameFromPath(modulePath: string): string; export declare function fileExistsAsync(file: string): Promise; export declare function fileExists(file: string): boolean; export declare function getRootPackageJsonPath(projectRoot: string, exp: Pick): string;