import { FC } from 'react'; declare type Props = { relativity: string; value: number; units: string; onChange: (timeframe: string) => void; timeLabel: string; unitsPlaceholderLabel: string; relativityTitleForTodayLabel: string; relativityTitleLabel: string; disableAutoFocus?: boolean; }; declare const RelativeTime: FC; export default RelativeTime;