import * as z from "zod/v3"; import { ClosedEnum } from "../../types/enums.js"; /** * The color of the tag. If not provided, a random color will be used from the list: red, yellow, green, blue, purple, brown, gray. */ export declare const Color: { readonly Red: "red"; readonly Yellow: "yellow"; readonly Green: "green"; readonly Blue: "blue"; readonly Purple: "purple"; readonly Brown: "brown"; readonly Gray: "gray"; readonly Pink: "pink"; }; /** * The color of the tag. If not provided, a random color will be used from the list: red, yellow, green, blue, purple, brown, gray. */ export type Color = ClosedEnum; export type CreateTagRequestBody = { /** * The name of the tag to create. */ name?: string | undefined; /** * The color of the tag. If not provided, a random color will be used from the list: red, yellow, green, blue, purple, brown, gray. */ color?: Color | undefined; /** * The name of the tag to create. * * @deprecated field: This will be removed in a future release, please migrate away from it as soon as possible. */ tag?: string | undefined; }; /** @internal */ export declare const Color$outboundSchema: z.ZodNativeEnum; /** @internal */ export type CreateTagRequestBody$Outbound = { name?: string | undefined; color?: string | undefined; tag?: string | undefined; }; /** @internal */ export declare const CreateTagRequestBody$outboundSchema: z.ZodType; export declare function createTagRequestBodyToJSON(createTagRequestBody: CreateTagRequestBody): string; //# sourceMappingURL=createtag.d.ts.map