import type { ElementType } from 'react';
import { type TypographyProperties } from '../typography';
export type ProgressLabelProperties<ET extends ElementType = 'label'> = TypographyProperties<ET>;
/**
 * 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: {
    <ET extends ElementType = "label">({ className, tag, ...remainingProps }: ProgressLabelProperties<ET>): import("react/jsx-runtime").JSX.Element;
    displayName: string;
};
export default ProgressLabel;
