import type { GoogleSignInResponse } from '../../../../../entities'; import type { HttpClient } from '../../../../../services'; import type { ApiError, Response } from '../../../../types'; export type GoogleSignInInput = { accessToken: string; email: string; }; declare const googleSignIn: (http: HttpClient) => { query: (input: GoogleSignInInput) => Promise>; }; export default googleSignIn;