import type { IataTravelerTypes } from './IataTravelerTypes' /** * What the consumer knows about a seat it has assigned. Pimp holds no selection * state of its own — it only renders what it is handed. */ export interface CpSeatMapSeatSelection { hasLinkedTraveler?: boolean initials: string /** Drives the linked-traveler badge icon; without it the badge falls back to infant. */ linkedTravelerType?: IataTravelerTypes }