import { DataTestId } from '../../../../core/types/data-props.js'; import { StylingProps } from '../../../../core/types/styling-props.js'; import { WithChildren } from '../../../../core/types/with-children.js'; /** * @public */ export interface HintProps extends WithChildren, StylingProps, DataTestId { /** * Whether the connected input is currently disabled. * @defaultValue false */ disabled?: boolean; /** Id to link the hint to its corresponding element. */ id?: string; } /** * Renders a hint message if given, otherwise renders nothing. * @public */ export declare const Hint: { (props: HintProps): import("react/jsx-runtime").JSX.Element | null; displayName: string; };