import * as z from "zod"; import { ClosedEnum } from "../../types/enums.js"; /** * The gender represents the gender identity of a person. */ export declare const Gender: { readonly Male: "male"; readonly Female: "female"; readonly Unisex: "unisex"; readonly Other: "other"; readonly NotSpecified: "not_specified"; }; /** * The gender represents the gender identity of a person. */ export type Gender = ClosedEnum; /** @internal */ export declare const Gender$inboundSchema: z.ZodNativeEnum; /** @internal */ export declare const Gender$outboundSchema: z.ZodNativeEnum; /** * @internal * @deprecated This namespace will be removed in future versions. Use schemas and types that are exported directly from this module. */ export declare namespace Gender$ { /** @deprecated use `Gender$inboundSchema` instead. */ const inboundSchema: z.ZodNativeEnum<{ readonly Male: "male"; readonly Female: "female"; readonly Unisex: "unisex"; readonly Other: "other"; readonly NotSpecified: "not_specified"; }>; /** @deprecated use `Gender$outboundSchema` instead. */ const outboundSchema: z.ZodNativeEnum<{ readonly Male: "male"; readonly Female: "female"; readonly Unisex: "unisex"; readonly Other: "other"; readonly NotSpecified: "not_specified"; }>; } //# sourceMappingURL=gender.d.ts.map