import { ISocialUser } from '../interfaces/social-user.interface';
import { IGoogleConfig } from '../interfaces/config.interface';
import { SocialAuthResponse } from '../interfaces/easy-social-auth-response.interface';
import { AuthStrategy } from './easy-social-auth.strategy';
export declare class GoogleStrategy extends AuthStrategy {
    constructor(config: IGoogleConfig);
    getUserData(accessToken: string): Promise<SocialAuthResponse<ISocialUser>>;
}
