import { FC } from 'react';
declare type Props = {
relativity: string;
value: number;
units: string;
onChange: (timeframe: string) => void;
label: string;
unitsPlaceholder: string;
disableAutoFocus?: boolean;
};
declare const TimePeriod: FC<Props>;
export default TimePeriod;