import * as React from 'react'; import { type FieldRootState } from "../root/FieldRoot.mjs"; import type { BaseUIComponentProps } from "../../internals/types.mjs"; /** * A paragraph with additional information about the field. * Renders a `

` element. * * Documentation: [Base UI Field](https://base-ui.com/react/components/field) */ export declare const FieldDescription: React.ForwardRefExoticComponent & React.RefAttributes>; export interface FieldDescriptionState extends FieldRootState {} export interface FieldDescriptionProps extends BaseUIComponentProps<'p', FieldDescriptionState> {} export declare namespace FieldDescription { type State = FieldDescriptionState; type Props = FieldDescriptionProps; }