import { ExpoConfig } from '@expo/config-types'; import { ConfigPlugin } from '../Plugin.types'; import { AndroidManifest } from './Manifest'; export declare const withPackageManifest: ConfigPlugin; export declare const withPackageGradle: ConfigPlugin; export declare const withPackageRefactor: ConfigPlugin; export declare function getPackage(config: Pick): string | null; export declare function renamePackageOnDisk(config: Pick, projectRoot: string): Promise; export declare function renameJniOnDiskForType({ projectRoot, type, packageName, }: { projectRoot: string; type: string; packageName: string; }): Promise; export declare function renamePackageOnDiskForType({ projectRoot, type, packageName, }: { projectRoot: string; type: string; packageName: string; }): Promise; export declare function setPackageInBuildGradle(config: Pick, buildGradle: string): string; export declare function setPackageInAndroidManifest(config: Pick, androidManifest: AndroidManifest): AndroidManifest; export declare function getApplicationIdAsync(projectRoot: string): Promise;