import type { RunDeltaEvent, RunDoneEvent, RunErrorEvent, RunStartedEvent, RunStatusEvent } from "@hmbown/kytchen-protocol"; export declare function started(runId: string, threadId: string, mode: RunStartedEvent["mode"], options?: { turnId?: string; resumeToken?: string; }): RunStartedEvent; export declare function delta(runId: string, text: string, options?: { turnId?: string; }): RunDeltaEvent; export declare function status(runId: string, code: RunStatusEvent["status"], message: string): RunStatusEvent; export declare function done(runId: string, finishReason: RunDoneEvent["finishReason"], options?: { resumeToken?: string; }): RunDoneEvent; export declare function failed(runId: string, code: string, message: string): RunErrorEvent; //# sourceMappingURL=events.d.ts.map