import { type ElementType } from 'react'; import type { FieldDescriptionProps } from './types'; /** * Helper/hint text for a field. Automatically linked to the field's control * via `aria-describedby` using the coordinated ID from Field context. */ export declare const FieldDescription: { ({ as, children, ref, ...props }: FieldDescriptionProps): import("react/jsx-runtime").JSX.Element; displayName: string; };