import { type BlockResponse } from '../block/block-response'; export interface BlockNotification { readonly context: { readonly slot: number; }; readonly value: { readonly slot: number; readonly block: BlockResponse | null; readonly err: unknown; }; } export declare function createBlockNotification(data: unknown): BlockNotification;