import { Ref } from 'react'; import { GroupedBar, GroupedBarConfigInterface } from '@unovis/ts'; export declare type VisGroupedBarRef = { component?: GroupedBar; }; export declare type VisGroupedBarProps = GroupedBarConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisGroupedBarSelectors: typeof import("@unovis/ts/dist/components/grouped-bar/style"); export declare const VisGroupedBar: ((props: VisGroupedBarProps) => JSX.Element | null);