import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OCRTableBlock = { topLeftX: number; topLeftY: number; bottomRightX: number; bottomRightY: number; /** * Text/markdown/html content of this block */ content: string; type: "table"; /** * References the corresponding entry in OCRPageObject.tables, when tables are extracted */ tableId?: string | null | undefined; }; /** @internal */ export declare const OCRTableBlock$inboundSchema: z.ZodType; export declare function ocrTableBlockFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ocrtableblock.d.ts.map