import React from 'react'; import { PieSegmentProps } from './PieSegment'; export type PieChartSegmentProps = Pick; export type PieChartProps = { /** * Pie chart segments array */ segments: PieChartSegmentProps[]; /** * Pie chart diameter */ diameter?: number; } & Pick; declare const PieChart: (props: PieChartProps) => React.JSX.Element | null; export default PieChart;