import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OCRReferencesBlock = { topLeftX: number; topLeftY: number; bottomRightX: number; bottomRightY: number; /** * Text/markdown/html content of this block */ content: string; type: "references"; }; /** @internal */ export declare const OCRReferencesBlock$inboundSchema: z.ZodType; export declare function ocrReferencesBlockFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ocrreferencesblock.d.ts.map