/// <reference types="@duffel/api" />
import { SeatMapCabinRowSectionElementAmenity } from "@duffel/api/types";
import * as React from "react";
export interface LegendProps {
    /**
     * The set of additional symbols to display
     */
    symbols: Set<SeatMapCabinRowSectionElementAmenity>;
}
/**
 * The legend for the seat map.
 */
export declare const Legend: React.FC<LegendProps>;
