import * as React from 'react'; import { StandardProps } from '..'; export interface LinearProgressProps extends StandardProps, LinearProgressClassKey> { color?: 'primary' | 'secondary'; value?: number; valueBuffer?: number; variant?: 'determinate' | 'indeterminate' | 'buffer' | 'query'; } export type LinearProgressClassKey = | 'root' | 'colorPrimary' | 'colorSecondary' | 'determinate' | 'indeterminate' | 'buffer' | 'query' | 'dashed' | 'dashedColorPrimary' | 'dashedColorSecondary' | 'bar' | 'barColorPrimary' | 'barColorSecondary' | 'bar1Indeterminate' | 'bar2Indeterminate' | 'bar1Determinate' | 'bar1Buffer' | 'bar2Buffer'; declare const LinearProgress: React.ComponentType; export default LinearProgress;