export declare class Address {
    id: number;
    customer_id: number;
    label: string;
    contact_name: string;
    phone: string;
    province_id: number;
    district_id: number;
    ward_id: number;
    street_address: string;
    is_default: number;
    created_at: Date;
    updated_at: Date;
}
