import { CSSProperties, ElementType, ForwardedRef } from 'react';
export type ProgressLinearProperties = {
    /** @ignore */
    children?: never;
    /** @ignore */
    className?: string;
    /** Is Completed */
    completed?: boolean;
    /** Is Error State */
    invalid?: boolean;
    /** Is Paused */
    paused?: boolean;
    /** @ignore */
    style?: CSSProperties;
    /** Tag of Component */
    tag?: ElementType;
};
/**
 * Linear indicator used to show the progress of a task or process.
 * @docs {@link https://design.visa.com/react/components/progress | See Docs}
 * @related progress-label
 * @vgar TODO
 * @wcag TODO
 */
declare const _default: <HTMLElementType = HTMLProgressElement>(props: {
    children?: import("react").ReactNode | import("react").ReactNode[];
    ref?: ForwardedRef<HTMLElementType> | undefined;
} & import("react").AllHTMLAttributes<HTMLElementType> & import("react").SVGAttributes<HTMLElementType> & ProgressLinearProperties) => import("react").ReactElement;
export default _default;
