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