import { ColumnsType } from 'antd/es/table'; interface DeliveryData { id: string; driverName: string; vehicleType: "EV" | "ICE"; deliveryTime: string; parcelsDelivered: number; location: string; status: "completed" | "in-progress" | "pending"; } export declare const deliveryData: DeliveryData[]; export declare const columns: ColumnsType; export {};