import { Hash } from '@dedot/codecs'; import { SignerPayloadJSON } from '@dedot/types'; import { SignedExtension } from '../SignedExtension.js'; /** * @description Genesis hash check to provide replay protection between different networks. */ export declare class CheckGenesis extends SignedExtension<{}, Hash> { init(): Promise; fromPayload(payload: SignerPayloadJSON): Promise; toPayload(): Partial; }