export interface LogEntry { time: string; timestamp: number; method: string; path: string; protocol: string; model: string; latencyMs: number; inputTokens: number; outputTokens: number; success: boolean; stream?: boolean; pending?: boolean; requestId?: string; ua?: string; error?: string; } export type LogTab = 'all' | 'errors'; interface LogStreamProps { entries: LogEntry[]; errorCount: number; maxVisible?: number; scrollOffset: number; tab: LogTab; } export declare function LogStream({ entries, errorCount, maxVisible, scrollOffset, tab }: LogStreamProps): import("react/jsx-runtime").JSX.Element; export {}; //# sourceMappingURL=log-stream.d.ts.map