export interface PaymentMethod { key: string; title: Record; logoUrl: Record; minAmount: number | null; maxAmount: number | null; currency: string | null; isIban: boolean; baseCurrency: string | null; } export interface PaymentMethodGroup { key: string; title: Record; methods: PaymentMethod[]; } export interface PaymentMethodCountry { code: string; title: Record; groups: PaymentMethodGroup[]; } export interface PaymentMethodList { projectId: number; currency: string; countries: PaymentMethodCountry[]; } export interface PaymentMethodOptions { amount?: number; currency?: string; language?: string; } //# sourceMappingURL=payment-method.d.ts.map