import { Ref } from 'react'; import { Plotline, PlotlineConfigInterface } from '@unovis/ts'; export declare type VisPlotlineRef = { component?: Plotline; }; export declare type VisPlotlineProps = PlotlineConfigInterface & { ref?: Ref>; }; export declare const VisPlotlineSelectors: typeof import("@unovis/ts/dist/components/plotline/style"); export declare const VisPlotline: ((props: VisPlotlineProps) => JSX.Element | null);