type CircularGraphData = { label: string; color: string; value: number; }; type CircularGraphProps = { chartId?: string; size?: number; content?: string; hideLabels?: boolean; finalLabelType?: string; initialLabelType?: string; innerProps?: { textPosition?: 'top' | 'bottom'; textSize?: number; numberSize?: number; }; total?: number; data: [CircularGraphData]; labelFontSize?: string; labelPadding?: string; }; export default CircularGraphProps; //# sourceMappingURL=type.d.ts.map