import * as React from 'react'; import './style/index.less'; import { valueType, FormatConfig } from './number'; import CurrentTime from './current-time'; export interface TickerBoardProps extends FormatConfig { className?: string; style?: React.CSSProperties; value: valueType; valueStyle?: React.CSSProperties; valueRender?: (node: React.ReactNode) => React.ReactNode; title?: React.ReactNode; prefix?: React.ReactNode; suffix?: React.ReactNode; onMouseEnter?: React.MouseEventHandler; onMouseLeave?: React.MouseEventHandler; } declare const InternalTickerBoard: React.FC; type InternalTickerBoardType = typeof InternalTickerBoard; interface TickerBoardInterface extends InternalTickerBoardType { CurrentTime: typeof CurrentTime; } declare const TickerBoard: TickerBoardInterface; export default TickerBoard;