export declare const AccountType: { readonly Patient: "PATIENT"; readonly Insurance: "INSURANCE"; readonly ThirdPartyPayer: "THIRD_PARTY_PAYER"; }; export type AccountType = (typeof AccountType)[keyof typeof AccountType];