import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type ResponseReadFileCallReadingEvent = { type: "response.read_file_call.reading"; sequenceNumber: number; itemId: string; outputIndex: number; }; /** @internal */ export declare const ResponseReadFileCallReadingEvent$inboundSchema: z.ZodType; /** @internal */ export type ResponseReadFileCallReadingEvent$Outbound = { type: "response.read_file_call.reading"; sequence_number: number; item_id: string; output_index: number; }; /** @internal */ export declare const ResponseReadFileCallReadingEvent$outboundSchema: z.ZodType; export declare function responseReadFileCallReadingEventToJSON(responseReadFileCallReadingEvent: ResponseReadFileCallReadingEvent): string; export declare function responseReadFileCallReadingEventFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=responsereadfilecallreadingevent.d.ts.map