/** ℹ️ This enum is non-exhaustive. */ export declare const Sex: { readonly Female: "female"; readonly Male: "male"; readonly Other: "other"; }; export type Sex = (typeof Sex)[keyof typeof Sex];