import type { Enum, Struct, bool, u128 } from '@polkadot/types'; import type { AccountId, H160 } from '@polkadot/types/interfaces/runtime'; export interface Parameters extends Struct { readonly canBeNominated: bool; readonly optionExpired: u128; readonly optionP: u128; } export interface SmartContract extends Enum { readonly isWasm: boolean; readonly asWasm: AccountId; readonly isEvm: boolean; readonly asEvm: H160; } export declare type PHANTOM_OPERATOR = 'operator';