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; /** * Human-readable selector used for writing tests */ "data-cy"?: string; /** * Allows custom styling */ className?: string; } declare const _default: ({ data, label, text, className, "data-cy": dataCy }: DonutChartProps) => React.JSX.Element; export default _default;