import * as React from "react"; import { ProgressBarDatum } from "./ProgressBar"; export interface ProgressBarProps { /** * Objects that define the size and color of segments in the progress bar */ data: ProgressBarDatum[]; } declare const ProgressBarSegmentLegend: ({ data }: { data: any; }) => React.JSX.Element; export default ProgressBarSegmentLegend;