export interface Courier {
    supplier: string;
    shipping_method: string;
    tracking_number: string;
    estimated_delivery: string;
}
