import { Ref } from 'react'; import { Timeline, TimelineConfigInterface } from '@unovis/ts'; export declare type VisTimelineRef = { component?: Timeline; }; export declare type VisTimelineProps = TimelineConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisTimelineSelectors: typeof import("@unovis/ts/dist/components/timeline/style"); export declare const VisTimeline: ((props: VisTimelineProps) => JSX.Element | null);