import { Ref } from 'react'; import { Brush, BrushConfigInterface } from '@unovis/ts'; export declare type VisBrushRef = { component?: Brush; }; export declare type VisBrushProps = BrushConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisBrushSelectors: typeof import("@unovis/ts/dist/components/brush/style"); export declare const VisBrush: ((props: VisBrushProps) => JSX.Element | null);