export type KiroStreamEvent = { type: "content"; data: string; } | { type: "toolUse"; data: { name: string; toolUseId: string; input: string; stop?: boolean; }; } | { type: "toolUseInput"; data: { input: string; }; } | { type: "toolUseStop"; data: { stop: boolean; }; } | { type: "contextUsage"; data: { contextUsagePercentage: number; }; } | { type: "followupPrompt"; data: string; } | { type: "usage"; data: { inputTokens?: number; outputTokens?: number; }; } | { type: "error"; data: { error: string; message?: string; }; }; export declare function parseKiroEvent(parsed: Record): KiroStreamEvent | null; //# sourceMappingURL=event-parser.d.ts.map