import { ProgressHTMLAttributes } from 'react'; export interface ProgressProps extends ProgressHTMLAttributes { /** If true, the bar will be overlayed with an animated effect. */ feAnimated?: boolean; } /** * The `` component renders a progress bar to indicate work being done in the background.
* It extends the interface of native html `` element. * * See [InVision DSM](https://skf.invisionapp.com/dsm/ab-skf/4-web-applications/nav/5fa7caf78c01200018354495/asset/619e420eb3d2145aa7584b14) for design principles.
* See [MDN Web Docs](https://developer.mozilla.org/en-US/docs/Web/HTML/Element/progress) for further information about the element and related attributes. */ declare const Progress: import("react").ForwardRefExoticComponent>; export default Progress;