export declare class Provider { 'organizationName'?: string; 'firstName'?: string; 'lastName'?: string; 'npi'?: string; 'serviceProviderNumber'?: string; 'payorId'?: string; 'taxId'?: string; 'ssn'?: string; 'pharmacyProcessorNumber'?: string; 'servicesPlanID'?: string; 'employersId'?: string; 'providerCode'?: ProviderProviderCodeEnum; 'referenceIdentification'?: string; 'providerType'?: ProviderProviderTypeEnum; 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(); } export declare enum ProviderProviderCodeEnum { Ad = "AD", At = "AT", Bi = "BI", Co = "CO", Cv = "CV", H = "H", Hh = "HH", La = "LA", Ot = "OT", P1 = "P1", P2 = "P2", Pc = "PC", Pe = "PE", R = "R", Rf = "RF", Sb = "SB", Sk = "SK", Su = "SU" } export declare enum ProviderProviderTypeEnum { Payer = "payer", ThirdPartyAdministrator = "third-party administrator", Employer = "employer", Hospital = "hospital", Facility = "facility", GatewayProvider = "gateway provider", PlanSponsor = "plan sponsor", Provider = "provider" }