import type { Option, Text, u32, Vec } from '@polkadot/types-codec'; import type { Registry } from '@polkadot/types-codec/types'; import { Json } from '@polkadot/types-codec'; export declare class GenericChainProperties extends Json { constructor(registry: Registry, value?: Map | Record | null); /** * @description The chain ss58Format */ get ss58Format(): Option; /** * @description The decimals for each of the tokens */ get tokenDecimals(): Option>; /** * @description The symbols for the tokens */ get tokenSymbol(): Option>; }