/// import { FlexboxProps } from '@lobehub/ui'; import { ValueFormatter } from "../types/charts"; export interface CategoryBarProps extends FlexboxProps { colors?: string[]; markerValue?: number; showAnimation?: boolean; showLabels?: boolean; size?: number; tooltip?: string; valueFormatter?: ValueFormatter; values: number[]; } declare const CategoryBar: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; export default CategoryBar;