import { ReactElement, PropsWithChildren } from 'react'; import { LinearProgressProps } from './types'; declare const LinearProgress: ({ intent, value, backgroundColor, color, label, className, infinite, overrides, children, }: PropsWithChildren) => ReactElement; export default LinearProgress;