import { ReactNode } from 'react'; import { DoughnutChartData } from '../../DoughnutChart/utils'; type PolymorphicTableProps = { data: DoughnutChartData[]; valuesFormatterFn?: (value: number, precision?: number) => string; valuesUnit?: string; icons?: ReactNode[]; isLoading?: boolean; onLegendAction?: (index: number) => void; }; export declare const PolymorphicTable: (props: PolymorphicTableProps) => import("react/jsx-runtime").JSX.Element; export {};