1 | import type { Registry } from '@polkadot/types-codec/types';
|
2 | import type { HexString } from '@polkadot/util/types';
|
3 | import { MetadataVersioned } from './MetadataVersioned.js';
|
4 | /**
|
5 | * @name Metadata
|
6 | * @description
|
7 | * The versioned runtime metadata as a decoded structure
|
8 | */
|
9 | export declare class Metadata extends MetadataVersioned {
|
10 | constructor(registry: Registry, value?: Uint8Array | HexString | Map<string, unknown> | Record<string, unknown>);
|
11 | }
|