import { FunctionComponent } from 'react'; export interface TimeProps { blink?: boolean; responsive?: boolean; showAction?: boolean; } /** * A component used to display a time in minutes and seconds. */ declare const Time: FunctionComponent; export default Time;