export interface ToolCallInterruptedPayload {
    type: "tool_call_interrupted";
    /** ID of the interrupted tool call */
    tool_call_id: string;
    /** Name of the interrupted tool */
    tool_name: string;
}
