import { type DataTestId, type StylingProps, type WithChildren } from '@dynatrace/strato-components/core'; /** * @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.js").JSX.Element | null; displayName: string; };