import type { ServiceApiParams } from '../../common'; export type PaymentOptions = { PaymentMethod: { Code: NumericalString; Name: string; }; IsEnabled: boolean; InstallmentLimit: number; MinorInstallmentAmount: number; IsInstallmentEnable: boolean; }; export type ConsultPaymentOptionsResponse = PaymentOptions[]; export declare function consultPaymentOptions({ api }: ServiceApiParams): Promise;