@duffel/components
Version:
Component library to build your travel product with Duffel.
9 lines (8 loc) • 389 B
TypeScript
/// <reference types="@duffel/api" />
import { SeatMapCabinRowSectionAvailableService, SeatMapCabinRowSectionElementSeat } from "@duffel/api/types";
import * as React from "react";
export interface SeatInfoProps {
seat: SeatMapCabinRowSectionElementSeat | null;
service: SeatMapCabinRowSectionAvailableService | undefined;
}
export declare const SeatInfo: React.FC<SeatInfoProps>;