import { APIResponse, ConfigType } from "../../../../storefront-api-client/src"; export declare const sendContactFormToMerchant: (input: SendContactFormToMerchantQueryParams, excludeFields?: string[], config?: ConfigType) => Promise | APIResponse>; export type SendContactFormToMerchantQueryParams = { captchaToken?: string | null; email: string; firstName: string; lastName: string; locale?: string | null; message: string; phone?: string | null; referer?: string | null; };