import type { ElementType } from 'react'; import { type TypographyProperties } from '../typography'; export type ProgressLabelProperties = TypographyProperties; /** * Label used with a progress component for textual representation of status. * @docs {@link https://design.visa.com/components/progress/?code_library=react | See Docs} * @vgar TODO * @wcag TODO */ declare const ProgressLabel: { ({ className, tag, ...remainingProps }: ProgressLabelProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default ProgressLabel;