import { Ref } from 'react'; import { FlowLegend, FlowLegendConfigInterface } from '@unovis/ts'; export declare type VisFlowLegendRef = { component?: FlowLegend; }; export declare type VisFlowLegendProps = FlowLegendConfigInterface & { ref?: Ref; className?: string; }; export declare const VisFlowLegendSelectors: typeof import("@unovis/ts/dist/components/flow-legend/style"); export declare const VisFlowLegend: ((props: VisFlowLegendProps) => JSX.Element | null);