import { FieldLabelProps } from '../FieldLabel'; /** * Internal component for rendering the info icon button with tooltip. * * @param props - Component props * @param props.moreInfo - The content to display in the tooltip * @param props.moreInfoId - ID for the visually-hidden description span, used by aria-describedby on the associated input */ export declare const FieldLabelMoreInfoIcon: ({ moreInfo, moreInfoId, }: { moreInfo: FieldLabelProps["moreInfo"]; moreInfoId?: string; }) => import("react/jsx-runtime").JSX.Element;