import React from 'react'; import { ISurface } from '../Surface/Surface'; import { IElement, IElementReference, IPropsAny } from '../types'; export interface ICountdown extends Omit { version?: 'linear' | 'round'; renderValue?: (value: string) => IElement; icon?: boolean; onStart?: (event: React.MouseEvent) => any; onPause?: (event: React.MouseEvent) => any; onStop?: (event: React.MouseEvent) => any; onResume?: (event: React.MouseEvent) => any; Icon?: IElementReference; IconStart?: IElementReference; IconPause?: IElementReference; IconStop?: IElementReference; TreeProps?: IPropsAny; TooltipProps?: IPropsAny; RoundProgressProps?: IPropsAny; NumericTextFieldProps?: IPropsAny; IconButtonProps?: IPropsAny; LinearProgressProps?: IPropsAny; IconProps?: IPropsAny; } declare const Countdown: React.FC; export default Countdown;