1import { ExpoConfig } from '@expo/config-types'; 2import { XcodeProject } from 'xcode'; 3import { ConfigPlugin, ModProps } from '../Plugin.types'; 4import { InfoPlist } from './IosConfig.types'; 5export declare const withGoogle: ConfigPlugin; 6export declare const withGoogleServicesFile: ConfigPlugin; 7export declare function getGoogleSignInReservedClientId(config: Pick<ExpoConfig, 'ios'>, modRequest: Pick<ModProps<InfoPlist>, 'projectRoot'>): string | null; 8export declare function getGoogleServicesFile(config: Pick<ExpoConfig, 'ios'>): string | null; 9export declare function setGoogleSignInReservedClientId(config: Pick<ExpoConfig, 'ios'>, infoPlist: InfoPlist, modRequest: Pick<ModProps<InfoPlist>, 'projectRoot'>): InfoPlist; 10export declare function setGoogleConfig(config: Pick<ExpoConfig, 'ios'>, infoPlist: InfoPlist, modRequest: ModProps<InfoPlist>): InfoPlist; 11export declare function setGoogleServicesFile(config: Pick<ExpoConfig, 'ios'>, { projectRoot, project }: { 12 project: XcodeProject; 13 projectRoot: string; 14}): XcodeProject; 15