/// import { UIKITTheme } from "../../../globalStyles"; import { SimpleTableCols } from "../../../types"; import { PieChartData } from "../PieChart"; interface Props { colorTheme?: UIKITTheme; cols?: SimpleTableCols[]; content?: JSX.Element; creditsUnit: string; customColors?: string[]; customPieChartContent?: JSX.Element | null; horizontal?: boolean; onClick?: () => void; rows: PieChartData[]; showTable?: boolean; size: string; titleStyles?: string; withDataInside?: boolean; } export declare const PieChartContainer: ({ onClick, customPieChartContent, rows, cols, showTable, content, customColors, colorTheme, creditsUnit, horizontal, withDataInside, size, }: Props) => import("react/jsx-runtime").JSX.Element; export {};