1 | import type { Registry } from '@polkadot/types-codec/types';
|
2 | import type { ExtrinsicPayloadOptions } from './types.js';
|
3 | import { Struct } from '@polkadot/types-codec';
|
4 | /**
|
5 | * @name GenericExtrinsicPayloadUnknown
|
6 | * @description
|
7 | * A default handler for payloads where the version is not known (default throw)
|
8 | */
|
9 | export declare class GenericExtrinsicPayloadUnknown extends Struct {
|
10 | constructor(registry: Registry, _value?: unknown, { version }?: Partial<ExtrinsicPayloadOptions>);
|
11 | }
|