import * as z from "zod"; export type TagDto = { /** * id of the tag */ id: string; /** * name of the tag */ name: string; /** * description of the tag */ description: string; /** * is this a core tag */ isCore: boolean; }; /** @internal */ export declare const TagDto$inboundSchema: z.ZodType; /** @internal */ export type TagDto$Outbound = { id: string; name: string; description: string; isCore: boolean; }; /** @internal */ export declare const TagDto$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 TagDto$ { /** @deprecated use `TagDto$inboundSchema` instead. */ const inboundSchema: z.ZodType; /** @deprecated use `TagDto$outboundSchema` instead. */ const outboundSchema: z.ZodType; /** @deprecated use `TagDto$Outbound` instead. */ type Outbound = TagDto$Outbound; } //# sourceMappingURL=tagdto.d.ts.map