import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; import { CustomerLoginResponse } from "../types"; export declare const customerSocialLogin: (input: CustomerSocialLoginQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type CustomerSocialLoginQueryParams = { code: string; };