import * as z from "zod/v3"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; /** * Describes the limits of a bulk job, or an action associated with a bulk job */ export type BulkJobConstraints = { maxSizeMb?: number | undefined; maxDocumentsPerJob?: number | undefined; allowedFormats?: Array | undefined; timeoutSeconds?: number | undefined; }; /** @internal */ export declare const BulkJobConstraints$inboundSchema: z.ZodType; export declare function bulkJobConstraintsFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=bulkjobconstraints.d.ts.map