import { type Component } from "@oh-my-pi/pi-tui"; import { type RawSseDebugBuffer } from "./raw-sse-buffer"; export interface RawSseViewerOptions { buffer: RawSseDebugBuffer; terminalRows: number; onExit: () => void; onStatus?: (message: string) => void; onUpdate?: () => void; } export declare class RawSseViewerComponent implements Component { #private; constructor(options: RawSseViewerOptions); handleInput(keyData: string): void; invalidate(): void; render(width: number): string[]; }