export interface SseEvent { type?: string; [key: string]: unknown; } export interface CliAutomationEvent { type: 'skill' | 'tool'; summary: string; skill?: string; tool?: string; target?: string; } export declare function toAutomationEvent(event: SseEvent): CliAutomationEvent | null; export declare function extractRenderableText(event: SseEvent): string; export declare function describeCliEvent(event: SseEvent): string; export declare function consumeSseStream(stream: ReadableStream, onEvent: (event: SseEvent) => void): Promise;