import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * The status of the explode operation. */ export declare const ExplodeResponseStatus: { readonly Processing: "processing"; }; /** * The status of the explode operation. */ export type ExplodeResponseStatus = ClosedEnum; export declare const ExplodeResponseStatus$zodSchema: z.ZodEnum<{ processing: "processing"; }>; export type ExplodeResponse = { status?: ExplodeResponseStatus | undefined; batch_id?: string | undefined; }; export declare const ExplodeResponse$zodSchema: z.ZodType; //# sourceMappingURL=exploderesponse.d.ts.map