/** ℹ️ This enum is non-exhaustive. */ export declare const SexualOrientation: { readonly LesbianGayOrHomosexual: "lesbian_gay_or_homosexual"; readonly HeterosexualOrStraight: "heterosexual_or_straight"; readonly Bisexual: "bisexual"; readonly DontKnow: "dont_know"; readonly Other: "other"; }; export type SexualOrientation = (typeof SexualOrientation)[keyof typeof SexualOrientation];