import { ExpoConfig } from '@expo/config-types'; import { ConfigPlugin } from '../Plugin.types'; 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 getApplicationIdAsync(projectRoot: string): Promise; /** * Make a package name safe to use in a kotlin file, * e.g. is.pvin.hello -> `is`.pvin.hello */ export declare function kotlinSanitized(packageName: string): string;