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