import { ProtocolSymbols } from '../../../utils/ProtocolSymbols'; import { CurrencyUnit, FeeDefaults } from '../../ICoinProtocol'; import { SubstrateDelegateProtocol } from '../SubstrateDelegateProtocol'; import { SubstrateNetwork } from '../SubstrateNetwork'; import { SubstrateProtocolOptions } from '../SubstrateProtocolOptions'; export declare class KusamaProtocol extends SubstrateDelegateProtocol { readonly options: SubstrateProtocolOptions; symbol: string; name: string; marketSymbol: string; feeSymbol: string; decimals: number; feeDecimals: number; identifier: ProtocolSymbols; addressIsCaseSensitive: boolean; feeDefaults: FeeDefaults; units: CurrencyUnit[]; standardDerivationPath: string; addressValidationPattern: string; addressPlaceholder: string; constructor(options?: SubstrateProtocolOptions); }