import type { Event } from "./types.js"; export interface ParsedEvents { events: Event[]; rawBlock?: string; } export declare function parseEventsBlock(response: string): ParsedEvents;