import type { ElementType } from 'react'; import { type TypographyProperties } from '../typography'; export type LabelProperties = TypographyProperties; /** * Component used to label form elements. * @docs {@link https://design.visa.com/components | See Docs} */ declare const Label: { ({ className, tag, ...remainingProps }: LabelProperties): import("react/jsx-runtime").JSX.Element; displayName: string; }; export default Label;