import React from "react"; //#region src/components/booking/dashboard/index.d.ts interface BookingDashboardProps extends React.HTMLAttributes { backgroundColors?: string[]; labelColor?: string; valueColor?: string; otherParams?: Record; refreshKey?: string; onDataChange?: (data: { groupsOnSiteNow: string | number; peopleOnSiteNow: string | number; totalVisitorsToday: string | number; ongoing: string | number; upcoming: string | number; overdue: string | number; completed: string | number; departed: string | number; }, dataList: string[]) => void; } declare const BookingDashboard: React.ForwardRefExoticComponent>; //#endregion export { BookingDashboard };