import * as z from "zod/v4"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type OCRUsageInfo = { /** * Number of pages processed */ pagesProcessed: number; /** * Document size in bytes */ docSizeBytes?: number | null | undefined; }; /** @internal */ export declare const OCRUsageInfo$inboundSchema: z.ZodType; export declare function ocrUsageInfoFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=ocrusageinfo.d.ts.map