/** * BlockResponse type and creator */ import { Block } from './block'; import { BlockId } from '../header/block-id'; export interface BlockResponse { readonly blockId: BlockId; readonly block: Block; } export declare const BlockResponseCodec: import("../../../codec").BaseCodec; export declare function createBlockResponse(data: unknown): BlockResponse;