1export declare type SearchResults = {
2    [moduleName: string]: object;
3};
4export declare type SearchOptions = {
5    searchPaths: string[];
6    platform: 'ios' | 'android' | 'web';
7    silent?: boolean;
8};
9export declare type AutolinkingModule = {
10    resolveSearchPathsAsync(searchPaths: string[] | null, cwd: string): Promise<string[]>;
11    findModulesAsync(providedOptions: SearchOptions): Promise<SearchResults>;
12};
13/**
14 * Imports the `expo-modules-autolinking` package installed in the project at the given path.
15 */
16export declare function importExpoModulesAutolinking(projectRoot: string): AutolinkingModule;
17