import { SignerPayloadJSON } from '@dedot/types'; import { SignedExtension } from '../SignedExtension.js'; /** * @description Ensure the transaction version registered in the transaction is the same as at present. */ export declare class CheckTxVersion extends SignedExtension<{}, number> { init(): Promise; fromPayload(payload: SignerPayloadJSON): Promise; toPayload(): Partial; }