import * as z from "zod"; /** * Schema for archiving an experiment */ export type ExperimentArchiveDto = { /** * The reason for archiving the experiment */ archiveReason?: string | undefined; }; /** @internal */ export declare const ExperimentArchiveDto$inboundSchema: z.ZodType; /** @internal */ export type ExperimentArchiveDto$Outbound = { archiveReason?: string | undefined; }; /** @internal */ export declare const ExperimentArchiveDto$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 ExperimentArchiveDto$ { /** @deprecated use `ExperimentArchiveDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ExperimentArchiveDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ExperimentArchiveDto$Outbound` instead. */ type Outbound = ExperimentArchiveDto$Outbound; } //# sourceMappingURL=experimentarchivedto.d.ts.map