import { ReactElement } from 'react'; import { LinearProgressProps } from '@material-ui/core/LinearProgress'; interface Props { linearProgressProps?: LinearProgressProps; value: number; } export declare function LinearProgressWithLabel(props: Props): ReactElement; export {};