import * as z from "zod"; import { ClosedEnum } from "../types/enums.js"; /** * The status of a person. */ export declare const PersonStatus: { readonly Active: "active"; readonly Hidden: "hidden"; }; /** * The status of a person. */ export type PersonStatus = ClosedEnum; export declare const PersonStatus$zodSchema: z.ZodEnum<{ active: "active"; hidden: "hidden"; }>; //# sourceMappingURL=personstatus.d.ts.map