import { default as React } from 'react'; export interface DeliveryData { id: string; driverName: string; vehicleType: "EV" | "ICE"; deliveryTime: string; parcelsDelivered: number; location: string; status: "completed" | "in-progress" | "pending"; } declare const DashboardLayoutStory: React.FC; export default DashboardLayoutStory;