import { Ref } from 'react'; import { BulletLegend, BulletLegendConfigInterface } from '@unovis/ts'; export declare type VisBulletLegendRef = { component?: BulletLegend; }; export declare type VisBulletLegendProps = BulletLegendConfigInterface & { ref?: Ref; className?: string; }; export declare const VisBulletLegendSelectors: typeof import("@unovis/ts/dist/components/bullet-legend/style"); export declare const VisBulletLegend: ((props: VisBulletLegendProps) => JSX.Element | null);