/// interface Props { /** * Progress (percentage). * @default 0 */ value?: number; /** * Transition duration (seconds). * @default 0.2 */ transitionDuration?: number; } declare const LinearProgress: ({ value, transitionDuration }: Props) => JSX.Element; export default LinearProgress;