import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Item reference item: A pointer to another response item by ID. */ export type ItemReference = { type?: "item_reference" | undefined; id: string; }; /** @internal */ export declare const ItemReference$inboundSchema: z.ZodType; /** @internal */ export type ItemReference$Outbound = { type: "item_reference"; id: string; }; /** @internal */ export declare const ItemReference$outboundSchema: z.ZodType; export declare function itemReferenceToJSON(itemReference: ItemReference): string; export declare function itemReferenceFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=itemreference.d.ts.map