import { BarListStyles } from './bar-list.css'; import * as React from 'react'; interface BarItemProps extends BarListStyles { id?: string | number; title: string; subtitle?: string; value: number; maxValue?: number; color?: string; tooltip?: string | React.ReactNode; formatValue?: (value: number) => string; onClick?: () => void; href?: string; } interface BarListProps extends React.HTMLAttributes, BarListStyles { data: BarItemProps[]; valueFormatter?: (value: number) => string; onValueChange?: (item: BarItemProps) => void; sortOrder?: 'ascending' | 'descending' | 'none'; showAnimation?: boolean; } declare const BarList: React.ForwardRefExoticComponent>; export { BarList, type BarItemProps, type BarListProps }; //# sourceMappingURL=bar-list.d.ts.map