import React from 'react'; import type { Selection, Speed } from '../../types'; import './index.less'; type Props = { className?: string; defaultSpeed?: Speed; timebar: string[]; initialSelection: Selection; selection?: Selection; setSelection: (val: Selection) => void; onReset?: () => void; }; declare const TimebarAnimation: React.FC; export default TimebarAnimation;