import { Ref } from 'react'; import { Line, LineConfigInterface } from '@unovis/ts'; export declare type VisLineRef = { component?: Line; }; export declare type VisLineProps = LineConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisLineSelectors: typeof import("@unovis/ts/dist/components/line/style"); export declare const VisLine: ((props: VisLineProps) => JSX.Element | null);