import { VuerProps } from '../vuer/interfaces'; export type PlayBarProps = VuerProps<{ start?: number; end?: number; play?: boolean; stepSize?: number; }>; export declare function TimelineControls({ _key: key, start, end, stepSize, play, }: PlayBarProps): any;