import { type ElementType } from 'react'; import type { FieldLabelProps } from './types'; /** * Accessible label for a field. Automatically wired to the field's control * via `htmlFor` using the coordinated ID from Field context. */ export declare const FieldLabel: { ({ as, children, ref, ...props }: FieldLabelProps): import("react/jsx-runtime").JSX.Element; displayName: string; };