import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OCRImageBlock = { topLeftX: number; topLeftY: number; bottomRightX: number; bottomRightY: number; /** * Text/markdown/html content of this block */ content: string; type: "image"; /** * References the corresponding entry in OCRPageObject.images */ imageId: string; }; /** @internal */ export declare const OCRImageBlock$inboundSchema: z.ZodType; export declare function ocrImageBlockFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ocrimageblock.d.ts.map