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