import React from 'react'; import type { StyledProps } from '../common'; import { TdCountDownProps } from './type'; import './style'; export interface CountDownRef { start: () => void; reset: () => void; pause: () => void; } export interface CountDownProps extends TdCountDownProps, StyledProps { } declare const CountDown: React.ForwardRefExoticComponent>; export default CountDown;