import { Ref } from 'react'; import { StackedBar, StackedBarConfigInterface } from '@unovis/ts'; export declare type VisStackedBarRef = { component?: StackedBar; }; export declare type VisStackedBarProps = StackedBarConfigInterface & { data?: Datum[]; ref?: Ref>; }; export declare const VisStackedBarSelectors: typeof import("@unovis/ts/dist/components/stacked-bar/style"); export declare const VisStackedBar: ((props: VisStackedBarProps) => JSX.Element | null);