import type { ApiTypes } from '@polkadot/api/types'; import type { u32 } from '@polkadot/types'; import type { Codec } from '@polkadot/types/types'; declare module '@polkadot/api/types/consts' { interface AugmentedConsts { tokens: { maxLocks: u32 & AugmentedConst; /** * Generic const **/ [key: string]: Codec; }; } interface QueryableConsts extends AugmentedConsts { [key: string]: QueryableModuleConsts; } }