import type { ComponentPropsWithRef, ElementType } from 'react'; export type ProgressLinearProperties = { /** Is Completed */ completed?: boolean; /** Is Error State */ invalid?: boolean; /** Is Paused */ paused?: boolean; /** Tag of Component */ tag?: ElementType; } & ComponentPropsWithRef; /** * Linear indicator used to show the progress of a task or process. * @docs {@link https://design.visa.com/components/progress/?code_library=react | See Docs} * @related progress-label * @vgar TODO * @wcag TODO */ declare const ProgressLinear: { ({ className, completed, invalid, paused, style, tag: Tag, ...remainingProps }: ProgressLinearProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default ProgressLinear;