import { BaseModel } from "../../../base-model";
export declare class AddressOrderModel extends BaseModel {
    addressId: string;
    userId: string;
    label: string;
    labelName: string;
    link: string;
    addressLine1: string;
    addressLine2: string;
    addressLine3: string;
    pincode: string;
    city: string;
    state: string;
    latitude: number;
    longitude: number;
    landmark: string;
    type: string;
    instructions: string;
    receiverName?: string;
    receiverPhone?: string;
}
