import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseRefusalDeltaEvent = { type: "response.refusal.delta"; sequenceNumber: number; itemId: string; outputIndex: number; contentIndex: number; delta: string; }; /** @internal */ export declare const ResponseRefusalDeltaEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseRefusalDeltaEvent$Outbound = { type: "response.refusal.delta"; sequence_number: number; item_id: string; output_index: number; content_index: number; delta: string; }; /** @internal */ export declare const ResponseRefusalDeltaEvent$outboundSchema: z.ZodType; export declare function responseRefusalDeltaEventToJSON(responseRefusalDeltaEvent: ResponseRefusalDeltaEvent): string; export declare function responseRefusalDeltaEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responserefusaldeltaevent.d.ts.map