import { AlgorandAddress } from './algorandAddress'; import { EthereumAddress } from './ethereumAddress'; import { RskAddress } from './rskAddress'; export declare class PaymentAddresses { 'ethereum'?: EthereumAddress; 'algorand'?: AlgorandAddress; 'rsk'?: RskAddress; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }