import { TIME_UNITS } from '../../../constants'; declare type Keys = keyof typeof TIME_UNITS; declare type Units = typeof TIME_UNITS[Keys]; export declare const getInterval: (units: Units) => string; export {};