import { State } from './state.entity'; export declare class UserAddress { id: number; userId: number; addressLine1: string; addressLine2: string; city: string; state: State; postalCode: string; isPrimary: boolean; isActive: boolean; created: Date; createdBy: number; modified: Date; modifiedBy: number; }