export declare class PaymentMethod { id: string; owner: string; createdAt: string; name: string; defaultCurrency: string; status: string; statusMessage: string; waitingPrompts: any[]; linkType: string; beneficiaryType: string; expirationDisplay: string; countryCode: string; nickname: string; rejectionMessage: string; disabled: boolean; supportsPayment: true; chargeableCurrencies: string[]; depositableCurrencies: string[]; chargeFeeSchedule: string; depositFeeSchedule: string; minCharge: string; maxCharge: string; minDeposit: string; maxDeposit: string; documents: any[]; srn: string; blockchains?: object; liquidationBalances?: object; }