import { Warehouse } from './warehouse.entity';
export declare class Courier {
    id: number;
    user_id: number;
    code: string;
    name: string;
    phone: string;
    password: string;
    warehouse_id: number;
    is_active: number;
    created_at: Date;
    updated_at: Date;
    warehouse: Warehouse;
}
