/// import type Api from './api'; import type VideoEventInstance from './event'; import './style/timeline.less'; interface ITimeLineProps { api: Api; event: VideoEventInstance; } export declare function useTimes(api: Api, event: VideoEventInstance, isHide?: boolean): number[]; declare function TimeLine({ api, event }: ITimeLineProps): JSX.Element; export default TimeLine;