import { ReactNode } from 'react'; import { Seat } from '../../types/Seat.types'; import { SeatmapControl } from '../../types/SeatmapControl.types'; export interface SeatmapInputProps { seats: Seat[]; onChange?: (value: number[]) => void; value?: number[]; className?: string; svg?: string; displayGroupMapping?: Record; leftControls?: SeatmapControl[]; rightControls?: SeatmapControl[]; withGroupSelection?: boolean; withDragSelection?: boolean; }