import React from 'react';
import { TimeData, BaseProps } from './interface';
export declare type Mark = 'day' | 'week' | 'month' | 'year';
export declare type MarkTexts = Record<Mark, string>;
interface FastProps extends BaseProps<Mark> {
    value?: TimeData;
}
declare const Fast: React.FC<FastProps>;
export default Fast;
