import { LabelProps } from '@spark-ui/label'; import { ReactNode, Ref } from 'react'; export interface FormFieldLabelProps extends LabelProps { /** * Element shown when the input is required inside the label. */ requiredIndicator?: ReactNode; ref?: Ref; } export declare const FormFieldLabel: { ({ htmlFor: htmlForProp, className, children, requiredIndicator, asChild, ref, ...others }: FormFieldLabelProps): import("react").JSX.Element; displayName: string; };