import type { Box } from '@nivo/core'; import type { CSSProperties, ReactNode } from 'react'; import type { Data } from './types'; type PieChartProps = { chartProps?: Record; data?: Data[]; height?: number; width?: number; emptyLegend?: string; legendHeader?: string; content?: ReactNode; withLegend?: boolean; margin?: Box; style?: CSSProperties; }; export declare function PieChart({ height, width, data, emptyLegend, legendHeader, content, withLegend, margin, chartProps, style, }: PieChartProps): import("react").JSX.Element; export declare namespace PieChart { var displayName: string; } export {}; //# sourceMappingURL=index.d.ts.map