import { FC } from 'react'; import { IDonutItem } from '../Donut'; export interface DonutLabelsProps { /** overwrite className */ className?: string; /** data */ data: IDonutItem[]; } declare const DonutLabels: FC; export default DonutLabels;