import { AlgorandBalance } from './algorandBalance'; import { EthereumBalance } from './ethereumBalance'; import { RskBalance } from './rskBalance'; export declare class PaymentBalances { 'ethereum'?: EthereumBalance; 'algorand'?: AlgorandBalance; 'rsk'?: RskBalance; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }