import * as z from "zod/v4-mini"; import { Result as SafeParseResult } from "../../types/fp.js"; import { SDKValidationError } from "../errors/sdkvalidationerror.js"; export type S3FileUploadPart = { number: number; chunkStart: number; chunkEnd: number; checksumSha256Base64?: string | null | undefined; url: string; expiresAt: Date; headers?: { [k: string]: string; } | undefined; }; /** @internal */ export declare const S3FileUploadPart$inboundSchema: z.ZodMiniType; export declare function s3FileUploadPartFromJSON(jsonString: string): SafeParseResult; //# sourceMappingURL=s3fileuploadpart.d.ts.map