import * as z from "zod"; export type ChangeValidationDto = { name: string; validated: boolean; }; /** @internal */ export declare const ChangeValidationDto$inboundSchema: z.ZodType; /** @internal */ export type ChangeValidationDto$Outbound = { name: string; validated: boolean; }; /** @internal */ export declare const ChangeValidationDto$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 ChangeValidationDto$ { /** @deprecated use `ChangeValidationDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `ChangeValidationDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `ChangeValidationDto$Outbound` instead. */ type Outbound = ChangeValidationDto$Outbound; } //# sourceMappingURL=changevalidationdto.d.ts.map