export type ProgressSegment = {
    count: number;
    color: string;
    label: string;
};
export type ProgressBarProps = {
    segments: ProgressSegment[];
    total: number;
    height?: string;
    className?: string;
};
export declare function ProgressBar({ segments, total, height, className }: ProgressBarProps): import("react/jsx-runtime").JSX.Element | null;
//# sourceMappingURL=ProgressBar.d.ts.map