import { FC } from 'react'; import { Milliseconds } from './interface'; export interface RecentlyAbsoluteRangesProps { history: [Milliseconds, Milliseconds][]; onSelect?: (from: Milliseconds, to: Milliseconds) => void; } export declare const RecentlyAbsoluteRanges: FC;