import * as z from "zod"; import { UploadDeliveryType } from "./uploaddeliverytype.js"; /** * Status information returned for in-progress chunked uploads. * * @remarks * Note that fields that are not yet determined or not known at the time of the call are omitted from the response. */ export type NonFinalChunkUploadResponse = { done: boolean; bytes: number; kind?: UploadDeliveryType | undefined; resource_type?: string | undefined; public_id?: string | undefined; }; export declare const NonFinalChunkUploadResponse$zodSchema: z.ZodType; //# sourceMappingURL=nonfinalchunkuploadresponse.d.ts.map