import { FieldLabelProps } from './FieldLabel.types'; /** * FieldLabel Component * * A label component for form fields with optional required indicator. * Follows accessibility best practices by properly associating with form elements. * * @example * ```tsx * * * * ``` */ export declare function FieldLabel({ label, required, htmlFor, id, className, fontSize, 'data-testid': testId, dataTestId, dataId, }: FieldLabelProps): import("react/jsx-runtime").JSX.Element | null; export default FieldLabel; //# sourceMappingURL=FieldLabel.d.ts.map