import type { ComponentPropsWithoutRef } from 'react'; type FieldLabelProps = ComponentPropsWithoutRef<'label'>; declare function FieldLabel({ className, ...props }: FieldLabelProps): import("react/jsx-runtime").JSX.Element; export type { FieldLabelProps }; export default FieldLabel;