import { default as React } from '../../../node_modules/react'; import { TwinAnimationMixer } from '@easytwin/runtime'; interface BaseTimelineProps { target: { mixer: TwinAnimationMixer; }; pause: () => void; start: (time: number) => void; preview: (time: number) => void; } export declare function BaseTimeline(props: BaseTimelineProps): React.JSX.Element; export {};