1import { ExpoConfig } from '@expo/config-types'; 2import { ConfigPlugin } from '../Plugin.types'; 3export declare const withClassPath: ConfigPlugin; 4export declare const withApplyPlugin: ConfigPlugin; 5/** 6 * Add `google-services.json` to project 7 */ 8export declare const withGoogleServicesFile: ConfigPlugin; 9export declare function getGoogleServicesFilePath(config: Pick<ExpoConfig, 'android'>): string | null; 10export declare function setGoogleServicesFile(config: Pick<ExpoConfig, 'android'>, projectRoot: string, targetPath?: string): Promise<boolean>; 11/** 12 * Adding the Google Services plugin 13 * NOTE(brentvatne): string replacement is a fragile approach! we need a 14 * better solution than this. 15 */ 16export declare function setClassPath(config: Pick<ExpoConfig, 'android'>, buildGradle: string): string; 17export declare function applyPlugin(config: Pick<ExpoConfig, 'android'>, appBuildGradle: string): string; 18