import type { RNConfigCommandOptions, RNConfigDependency, RNConfigReactNativeAppProjectConfig, RNConfigReactNativeProjectConfig, RNConfigResult } from './reactNativeConfig.types'; import type { SupportedPlatform } from '../types'; /** * Create config for react-native core autolinking. */ export declare function createReactNativeConfigAsync({ platform, projectRoot, searchPaths, }: RNConfigCommandOptions): Promise; /** * Find all dependencies and their directories from the project. */ export declare function findDependencyRootsAsync(projectRoot: string, searchPaths: string[]): Promise>; export declare function resolveDependencyConfigAsync(platform: SupportedPlatform, name: string, packageRoot: string, projectConfig: RNConfigReactNativeProjectConfig | null): Promise; export declare function resolveAppProjectConfigAsync(projectRoot: string, platform: SupportedPlatform): Promise;