import { ConfigureParams } from '@react-native-google-signin/google-signin'; interface IGoogleOptions { config?: ConfigureParams & { webClientId: string; }; } /** * Sign in through Google */ declare const GoogleSignIn: ({ config }?: IGoogleOptions) => Promise; /** * Sign out from Google * @constructor */ declare const GoogleSignOut: ({ config }?: IGoogleOptions) => Promise | undefined; export { GoogleSignIn, GoogleSignOut };