import { LoggedInResponseType } from "./";
export type SocialLoginType = 'google' | 'facebook' | 'apple';
export declare const loginBySocial: (token: string, social: string) => Promise<import("./").ReturnType<LoggedInResponseType>>;
