/// <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>;
