import { Address } from '../models/Address'; import { ContactInformation } from '../models/ContactInformation'; import { ProviderInformation } from '../models/ProviderInformation'; export declare class BenefitsRelatedEntity { 'entityIdentifier'?: string; 'entityType'?: string; 'entityName'?: string; 'entityFirstname'?: string; 'entityMiddlename'?: string; 'entitySuffix'?: string; 'entityIdentification'?: string; 'entityIdentificationValue'?: string; 'entityRelationship'?: string; 'address'?: Address; 'contactInformation'?: ContactInformation; 'providerInformation'?: ProviderInformation; static readonly discriminator: string | undefined; static readonly mapping: { [index: string]: string; } | undefined; static readonly attributeTypeMap: Array<{ name: string; baseName: string; type: string; format: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; format: string; }[]; constructor(); }