import { Ref } from 'react'; import { Scatter, ScatterConfigInterface } from '@unovis/ts'; export declare type VisScatterRef = { component?: Scatter; }; export declare type VisScatterProps = ScatterConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisScatterSelectors: typeof import("@unovis/ts/dist/components/scatter/style"); export declare const VisScatter: ((props: VisScatterProps) => JSX.Element | null);