import { IonicNativePlugin } from '@ionic-native/core'; /** * @name Google Plus * @description * @usage * ```typescript * import { GooglePlus } from '@ionic-native/google-plus/ngx'; * * constructor(private googlePlus: GooglePlus) { } * * ... * * this.googlePlus.login({}) * .then(res => console.log(res)) * .catch(err => console.error(err)); * * ``` */ export declare class GooglePlusOriginal extends IonicNativePlugin { /** * The login function walks the user through the Google Auth process. * @param options * @returns {Promise} */ login(options: any): Promise; /** * You can call trySilentLogin to check if they're already signed in to the app and sign them in silently if they are. * @param options * @returns {Promise} */ trySilentLogin(options?: any): Promise; /** * This will clear the OAuth2 token. * @returns {Promise} */ logout(): Promise; /** * This will clear the OAuth2 token, forget which account was used to login, and disconnect that account from the app. This will require the user to allow the app access again next time they sign in. Be aware that this effect is not always instantaneous. It can take time to completely disconnect. * @returns {Promise} */ disconnect(): Promise; /** * This will retrieve the Android signing certificate fingerprint which is required in the Google Developer Console. * @returns {Promise} */ getSigningCertificateFingerprint(): Promise; } export declare const GooglePlus: GooglePlusOriginal;