import type { Registry } from '../types'; import type { ExtrinsicPayloadOptions } from './types'; import { Struct } from '../codec/Struct'; /** * @name GenericExtrinsicPayloadUnknown * @description * A default handler for payloads where the version is not known (default throw) */ export declare class GenericExtrinsicPayloadUnknown extends Struct { constructor(registry: Registry, value?: unknown, { version }?: Partial); }