export declare const PatientRelationshipToInsuredCodeAll: { /** * Spouse */ readonly Spouse: "01"; /** * Grandparent */ readonly Grandparent: "04"; /** * Grandchild */ readonly Grandchild: "05"; /** * Niece/Nephew */ readonly NieceNephew: "07"; /** * Foster Child */ readonly FosterChild: "10"; /** * Ward of the Court */ readonly WardOfTheCourt: "15"; /** * Stepchild */ readonly Stepchild: "17"; /** * Self */ readonly Self: "18"; /** * Child */ readonly Child: "19"; /** * Employee */ readonly Employee: "20"; /** * Unknown */ readonly Unknown: "21"; /** * Handicapped Dependent */ readonly HandicappedDependent: "22"; /** * Sponsored Dependent */ readonly SponsoredDependent: "23"; /** * Dependent of Minor Dependent */ readonly DependentOfMinorDependent: "24"; /** * Significant Other */ readonly SignificantOther: "29"; /** * Mother */ readonly Mother: "32"; /** * Father */ readonly Father: "33"; /** * Emancipated Minor */ readonly EmancipatedMinor: "36"; /** * Organ Donor */ readonly OrganDonor: "39"; /** * Cadaver Donor */ readonly CadaverDonor: "40"; /** * Injured Plaintiff */ readonly InjuredPlaintiff: "41"; /** * Child (No Financial Responsibility) */ readonly ChildNoFinancialResponsibility: "43"; /** * Life Partner */ readonly LifePartner: "53"; /** * Other Relationship */ readonly OtherRelationship: "G8"; }; export type PatientRelationshipToInsuredCodeAll = (typeof PatientRelationshipToInsuredCodeAll)[keyof typeof PatientRelationshipToInsuredCodeAll];