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