import * as React from 'react'; type Props = { /** Additional css class applied to the progress bar. */ className?: string; /** How much of the progress bar should be filled. Number between 0 and 100 inclusive. */ fillPercentage?: number; /** Defines the human readable text alternative for assitive technologies. */ 'aria-valuetext'?: string; /** When true, renders a percentage scale with tick marks below the progress bar. */ showScale?: boolean; }; declare function ProgressBar({ fillPercentage, className, 'aria-valuetext': ariaValuetext, showScale, }: Props): React.JSX.Element; declare namespace ProgressBar { var displayName: string; } export { ProgressBar };