import { Address } from '../common/Address'; import { Location } from './Location'; import { SimpleObject } from '../common/SimpleObject'; import { Principal } from './Principal'; export declare class NamedInsured { id: number; logCounter: number; primary: boolean; businessName: string; firstName: string; lastName: string; middleName: string; mailingAddress: Address; phone: string; taxId: string; naics: number; yearEstablished: number; legalEntityType: SimpleObject; userId: string; status: string; noPrincipalReason: string; deleted: boolean; locations: Array; principals: Array; coveredStates: Array; dbaNames: Array; constructor(id: number, logCounter: number, primary: boolean, businessName: string, firstName: string, middleName: string, lastName: string, mailingAddress: Address, phone: string, taxId: string, naics: number, yearEstablished: number, legalEntityType: SimpleObject, userId: string, status: string, noPrincipalReason: string, deleted: boolean, locations: Array, principals: Array, coveredStates: Array, dbaNames: Array); static createTestNamedInsured(): NamedInsured; }