/** * * `CHILD` - CHILD * * `SPOUSE` - SPOUSE * * `DOMESTIC_PARTNER` - DOMESTIC_PARTNER */ export declare const RelationshipEnum: { readonly Child: "CHILD"; readonly Spouse: "SPOUSE"; readonly DomesticPartner: "DOMESTIC_PARTNER"; }; export type RelationshipEnum = (typeof RelationshipEnum)[keyof typeof RelationshipEnum];