import { RequestOptionsFactory } from '@wix/sdk-types'; /** * Retrieves a payment method type, with some fields localized according to the caller's language and country. * * The callers language and country are taken from the `language` or `country` parameters in the request. * If these parameters are not specified, the values are taken from context of the call if possible. For example, if this method is called from a Wix site, the selected language on that site will be used. * If language or country can't be determined, the method doesn't perform any filtering or localization. * * Language and country are used to determine localized values for the `displayName`, `description` fields. * Country is used to determine localized values for the `priority` and `promoted` fields in both `merchantFlow` and `buyerFlow`. */ export declare function getSitePaymentMethodType(payload: object): RequestOptionsFactory; /** * Retrieves a list of payment method types. * * If an `ids` array is specified, only payment method types with matching IDs or legacy IDs are returned. * If no `ids` are specified, all payment method types available in the caller's country are returned, with some fields localized according to the caller's language and country. * * The caller's language and country are taken from the `language` or `country` parameters in the request. * If `language` or `country` are not specified, the values are taken from context of the call if possible. For example, if this method is called from a Wix site, the selected language on that site will be used. * If language or country can't be determined, the method doesn't perform any filtering or localization. * * Language and country are used to determine localized values for the `displayName`, `description` fields. * Country is used to determine localized values for the `priority` and `promoted` fields in both `merchantFlow` and `buyerFlow`. * `currency` is used to determine the eligibility of payment method types for the provided currency. */ export declare function listSitePaymentMethodTypes(payload: object): RequestOptionsFactory;