import { SpotCurrencyChain } from './spotCurrencyChain'; export declare class Currency { 'currency'?: string; 'name'?: string; 'delisted'?: boolean; 'withdrawDisabled'?: boolean; 'withdrawDelayed'?: boolean; 'depositDisabled'?: boolean; 'tradeDisabled'?: boolean; 'fixedRate'?: string; 'chain'?: string; 'chains'?: Array; 'totalSupply'?: string; 'marketCap'?: string; 'category'?: Array; static discriminator: string | undefined; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }