import { Model } from 'sequelize-typescript';
export declare class ObjectAddressModel extends Model {
    AddressId: string;
    ObjectId: string;
    ObjectType: string;
    AddressLine1: string;
    AddressLine2: string;
    City: string;
    State: string;
    PostalCode: string;
    Country: string;
    Latitude: number;
    Longitude: number;
    AddressType: string;
    IsDefaultYN: string;
    Status: string;
    CreatedById: string;
    CreatedAt: Date;
    UpdatedById: string;
    UpdatedAt: Date;
}
