import { type FC, type PropsWithChildren } from 'react'; import '../styles/components/doughnut-chart.scss'; type Props = { /** * The bubble size (default is medium) */ size?: 'small' | 'medium' | 'large'; /** * The chart colour */ colorClass?: string; /** * The background chart colour */ bgColorClass?: string; /** * The ratio to be displayed in percent. */ percent?: number; }; declare const DoughnutChart: FC>; export default DoughnutChart; //# sourceMappingURL=doughnut-chart.d.ts.map