import { AppChainModule, BlockExplorerTransportModule, ClientBlock, InclusionStatus } from "@proto-kit/sequencer"; import { ModuleContainerLike } from "@proto-kit/common"; export declare class InMemoryBlockExplorer extends AppChainModule implements BlockExplorerTransportModule { sequencer: ModuleContainerLike; private readonly blockStorage; private readonly transactionStorage; constructor(sequencer: ModuleContainerLike); fetchTxInclusion(txHash: string): Promise; getBlock(param: { hash: string; } | { height: number; }): Promise; } //# sourceMappingURL=InMemoryBlockExplorer.d.ts.map