export type SearchResults = { [moduleName: string]: object; }; export type SearchOptions = { searchPaths: string[]; platform: 'ios' | 'android' | 'web'; silent?: boolean; }; export type AutolinkingModule = { resolveSearchPathsAsync(searchPaths: string[] | null, cwd: string): Promise; findModulesAsync(providedOptions: SearchOptions): Promise; }; /** * Imports the `expo-modules-autolinking` package installed in the project at the given path. */ export declare function importExpoModulesAutolinking(projectRoot: string): AutolinkingModule;