import "./WayfindingFloorSelector.scss";
import React from "react";
export interface WayfindingFloorSelectorFloor {
    id: number;
    name: string;
    description?: string;
    directionToNext?: "up" | "down";
    ariaLabel?: string;
}
export interface WayfindingFloorSelectorProps {
    floors: WayfindingFloorSelectorFloor[];
    value?: {
        id: number;
        name: string;
    };
    floorSelectionLabel?: string;
    onSelect?: (floor: {
        id: number;
        name: string;
    }) => void;
}
declare const WayfindingFloorSelector: ({ floors, value, floorSelectionLabel, onSelect }: WayfindingFloorSelectorProps) => React.JSX.Element;
export default WayfindingFloorSelector;
//# sourceMappingURL=WayfindingFloorSelector.d.ts.map