import * as React from "react"; interface DonutChartDatum { percentage: number; color?: React.CSSProperties["stroke"]; } export interface DonutChartProps { /** * objects that define the size and color of segments in the donut chart */ data: DonutChartDatum[]; /** * the primary piece of data in the chart - appears large */ label?: string; /** * a caption for the label */ text?: string; } declare const _default: ({ data, label, text }: DonutChartProps) => JSX.Element; export default _default;