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