import * as z from "zod"; /** * Schema for a list of IDs with a name and count */ export type IDListDto = { /** * The name associated with the list of IDs */ name: string; /** * The count of IDs in the list */ count: number; /** * The array of IDs */ ids: Array; }; /** @internal */ export declare const IDListDto$inboundSchema: z.ZodType; /** @internal */ export type IDListDto$Outbound = { name: string; count: number; ids: Array; }; /** @internal */ export declare const IDListDto$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 IDListDto$ { /** @deprecated use `IDListDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `IDListDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `IDListDto$Outbound` instead. */ type Outbound = IDListDto$Outbound; } //# sourceMappingURL=idlistdto.d.ts.map