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<string> | undefined;
    timeoutSeconds?: number | undefined;
};
/** @internal */
export declare const BulkJobConstraints$inboundSchema: z.ZodType<BulkJobConstraints, z.ZodTypeDef, unknown>;
export declare function bulkJobConstraintsFromJSON(jsonString: string): SafeParseResult<BulkJobConstraints, SDKValidationError>;
//# sourceMappingURL=bulkjobconstraints.d.ts.map