import * as React from 'react'; type ProgressBarShape = 'square' | 'round' | 'butt'; interface IProgressBarProps { id?: string; loading?: boolean; title?: string; color?: string; width?: number; shape?: ProgressBarShape; totalPoints?: number; currentPoints?: number; disabled?: boolean; onClick?: (event: React.MouseEvent) => void; } export declare const ProgressBar: ({ title, color, width, shape, totalPoints, currentPoints, loading, disabled, onClick, id }: IProgressBarProps) => React.JSX.Element; export {}; //# sourceMappingURL=ProgressBar.d.ts.map