import React from 'react'; import { TextStyle } from 'react-native'; import type { AvaiableSeat, BlockedSeat, DriverPosition, DriverSeat, Layout, SeatLayout, SelectedSeats } from './types'; export interface SeatsLayoutProps { blockedSeatImage?: BlockedSeat; driverImage?: DriverSeat; driverPosition?: DriverPosition; getBookedSeats?: (seats: Array) => void; isSleeperLayout?: boolean; layout: Layout; maxSeatToSelect?: number; numberTextStyle?: TextStyle; row: number; seatImage?: AvaiableSeat; selectedSeats?: Array; } declare const _default: React.NamedExoticComponent; export default _default;