export interface IProgressRange { /** * the top number in the range of progress being tracked */ max: number; /** * the minimum number in the range of progress being tracked * @default 0 */ min?: number; /** * the current value of the progress being tracked */ value: number; /** * whether or not to round the percentage displayed * @default false */ decimalPlaces?: number; } export interface IProgressProps extends IProgressRange { /** * layout variants for this component * @default 'linear' */ variant?: 'linear' | 'labelled' | 'circular'; } //# sourceMappingURL=types.d.ts.map