import * as z from "zod"; export type AbortMultipartRequestBody = { /** * The identifier of the multipart upload in the external storage provider. This is the multipart upload_id in AWS S3. */ externalUploadIdentifier: string; }; /** * external upload initialized */ export type AbortMultipartResponseBody = { success: string; }; /** @internal */ export declare const AbortMultipartRequestBody$inboundSchema: z.ZodType; /** @internal */ export type AbortMultipartRequestBody$Outbound = { external_upload_identifier: string; }; /** @internal */ export declare const AbortMultipartRequestBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AbortMultipartRequestBody$ { /** @deprecated use `AbortMultipartRequestBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AbortMultipartRequestBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AbortMultipartRequestBody$Outbound` instead. */ type Outbound = AbortMultipartRequestBody$Outbound; } /** @internal */ export declare const AbortMultipartResponseBody$inboundSchema: z.ZodType; /** @internal */ export type AbortMultipartResponseBody$Outbound = { success: string; }; /** @internal */ export declare const AbortMultipartResponseBody$outboundSchema: z.ZodType; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace AbortMultipartResponseBody$ { /** @deprecated use `AbortMultipartResponseBody$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `AbortMultipartResponseBody$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `AbortMultipartResponseBody$Outbound` instead. */ type Outbound = AbortMultipartResponseBody$Outbound; } //# sourceMappingURL=abortmultipart.d.ts.map