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 * @deprecated in favor of `FormFieldMessages`. */ 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. * @deprecated in favor of `FormFieldMessages`. * @public */ export declare const Hint: { (props: HintProps): import("react").JSX.Element | null; displayName: string; }; //# sourceMappingURL=Hint.d.ts.map