import React from "react";
import { Filters } from "./lib/filter-results";
interface StopsSelectorProps {
    selected: Filters["stops"];
    onChange: (stopFilter: Filters["stops"]) => void;
}
export declare const StopsSelector: React.FC<StopsSelectorProps>;
export {};
