import type { RNConfigDependencyAndroid, RNConfigReactNativePlatformsConfigAndroid } from './reactNativeConfig.types'; import type { ExpoModuleConfig } from '../ExpoModuleConfig'; export declare function resolveDependencyConfigImplAndroidAsync(packageRoot: string, reactNativeConfig: RNConfigReactNativePlatformsConfigAndroid | null | undefined, expoModuleConfig?: ExpoModuleConfig | null): Promise; /** * Parse the `RNConfigDependencyAndroid.packageName` */ export declare function parsePackageNameAsync(manifestPath: string | null, gradlePath: string | null): Promise; /** * Parse the Java or Kotlin class name to for `ReactPackage` or `(Base|Turbo)ReactPackage`. */ export declare function parseNativePackageClassNameAsync(packageRoot: string, androidDir: string): Promise; export declare function matchNativePackageClassName(_filePath: string, contents: Buffer): string | null; export declare function parseLibraryNameAsync(androidDir: string, packageJson: any): Promise; export declare function parseComponentDescriptorsAsync(packageRoot: string, packageJson: any): Promise; export declare function findGradleAndManifestAsync({ androidDir, isLibrary, }: { androidDir: string; isLibrary: boolean; }): Promise<{ gradle: string | null; manifest: string | null; }>;