import * as z from "zod"; export type HoldoutCreateContractDto = { /** * name of the holdout */ name: string; /** * description of the holdout */ description?: string | undefined; /** * type of id */ idType?: string | undefined; /** * id of the team */ teamID?: any | null | undefined; }; /** @internal */ export declare const HoldoutCreateContractDto$inboundSchema: z.ZodType; /** @internal */ export type HoldoutCreateContractDto$Outbound = { name: string; description?: string | undefined; idType?: string | undefined; teamID?: any | null | undefined; }; /** @internal */ export declare const HoldoutCreateContractDto$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 HoldoutCreateContractDto$ { /** @deprecated use `HoldoutCreateContractDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `HoldoutCreateContractDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `HoldoutCreateContractDto$Outbound` instead. */ type Outbound = HoldoutCreateContractDto$Outbound; } //# sourceMappingURL=holdoutcreatecontractdto.d.ts.map