import { default as React } from 'react'; import { SxProps } from '@mui/material'; type AbyssBarChartProps = { data: Record[]; keys: string[]; indexBy: string; height?: number; enableZoom?: boolean; horizontal?: boolean; stacked?: boolean; colors?: string[]; formatValue?: (value: any) => string; hiddenKeys?: string[]; onKeyToggle?: (key: string) => void; isInteractive?: boolean; showLegend?: boolean; showAxis?: boolean; sx?: SxProps; }; export declare const AbyssBarChart: React.FC; export {};