import * as React from 'react'; import { ReactElement } from 'react'; type LabelProps = React.ComponentProps<"label"> & { /** When true, renders a red asterisk after the label text to indicate a required field */ required?: boolean; }; declare function Label({ className, required, children, ...props }: LabelProps): ReactElement; export { Label, type LabelProps };