import React from "react"; import { type HelpIconProps } from "src/shared/HelpIcon"; import { Label as PrimitiveLabel } from "src/primitives/Label"; export type { HelpIconProps }; export interface LabelProps extends React.ComponentProps { /** Shows a red asterisk after the label text. */ required?: boolean; /** Props for the help icon (tooltip or popover mode). */ helpIconProps?: HelpIconProps; /** Additional CSS class names. */ className?: string; } declare const Label: React.ForwardRefExoticComponent & React.RefAttributes>; export { Label };