import { Ref } from 'react'; import { XYLabels, XYLabelsConfigInterface } from '@unovis/ts'; export declare type VisXYLabelsRef = { component?: XYLabels; }; export declare type VisXYLabelsProps = XYLabelsConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisXYLabelsSelectors: typeof import("@unovis/ts/dist/components/xy-labels/style"); export declare const VisXYLabels: ((props: VisXYLabelsProps) => JSX.Element | null);