import * as React from "react";
export interface DeckSelectProps {
    /**
     * The currently selected deck number
     */
    value: number;
    /**
     * What to do when the user selects a deck
     */
    setValue: (value: number) => void;
}
/**
 * The deck selection component for the seat map.
 */
export declare const DeckSelect: React.FC<DeckSelectProps>;
