export declare class Warehouse {
    id: number;
    code: string;
    name: string;
    address: string;
    province_id: number;
    district_id: number;
    ward_id: number;
    type: string;
    contact_phone: string;
    is_active: number;
    created_at: Date;
    updated_at: Date;
}
