import { default as React } from 'react'; import { Theme } from '@mui/material/styles'; import { BarDataProps } from '../types/Charts'; export interface TinyBarChartProps { data: BarDataProps[]; color: (theme: Theme) => string | undefined; width?: number; height?: number; } export declare const TinyBarChart: React.FC;