import { FunctionComponent } from 'react';
export type TimerProps = {
    color: string;
    devalueTime: Date;
    textColor?: string;
};
declare const Timer: FunctionComponent<TimerProps>;
export default Timer;
