import { Address } from '../common/Address'; export declare class Location { id: number; masterLocationId: number; namedInsuredId: number; dbaName: string; nickName: string; noLocationState: string; mailingAddress: Address; physicalAddress: Address; partTimeEmployees: number; fullTimeEmployees: number; userId: string; status: string; deleted: boolean; constructor(id: number, masterLocationId: number, namedInsuredId: number, dbaName: string, nickName: string, noLocationState: string, mailingAddress: Address, physicalAddress: Address, partTimeEmployees: number, fullTimeEmployees: number, userId: string, status: string, deleted: boolean); static createTestLocation(): Location; }