/// import { Row } from '../../types'; interface DataGridProps { rows: Row; bookingData: any; } declare function BookingGrid({ rows, bookingData }: DataGridProps): JSX.Element; export default BookingGrid;