/** * BlockchainResponse type and creator */ import { BlockMeta } from './block-meta'; export interface BlockchainResponse { readonly lastHeight: number; readonly blockMetas: readonly BlockMeta[]; } export declare const BlockchainResponseCodec: import("../../../codec").BaseCodec; export declare function createBlockchainResponse(data: unknown): BlockchainResponse;