/** * BlockId type and creator */ export interface BlockId { readonly hash: Uint8Array; readonly parts: { readonly total: number; readonly hash: Uint8Array; }; } export declare const BlockIdCodec: import("../../../codec").BaseCodec; export declare function createBlockId(data: unknown): BlockId;