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