1 | import * as React from 'react';
|
2 | import { CSSModule } from './utils';
|
3 |
|
4 | export interface ProgressProps extends React.HTMLAttributes<HTMLElement> {
|
5 | [key: string]: any;
|
6 | bar?: boolean;
|
7 | multi?: boolean;
|
8 | tag?: string;
|
9 | value?: string | number;
|
10 | min?: string | number;
|
11 | max?: string | number;
|
12 | animated?: boolean;
|
13 | striped?: boolean;
|
14 | color?: string;
|
15 | cssModule?: CSSModule;
|
16 | barClassName?: string;
|
17 | barStyle?: React.CSSProperties;
|
18 | barAriaValueText?: string;
|
19 | barAriaLabelledBy?: string;
|
20 | }
|
21 |
|
22 | declare class Progress extends React.Component<ProgressProps> {}
|
23 | export default Progress;
|