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