import '../../injector'; import { Codec } from '../../types'; /** * Given the static `rpcData` and the `staticSubstrate` JSON file, Metadata * should decode `rpcData` and output `staticSubstrate`. */ export declare function decodeLatestSubstrate(version: number, rpcData: string, staticSubstrate: object): void; /** * Given a `version`, MetadataV7 and MetadataV{version} should output the same * unique types. */ export declare function toV7(version: number, rpcData: string): void; /** * Given a Metadata, no type should throw when given its fallback value. */ export declare function defaultValues(rpcData: string): void;