import type React from 'react'; export interface HintProps { /** * Hint content, including text, links and block content such as paragraphs. */ children: React.ReactNode; id: string; className?: string; } export declare function Hint({ children, id, className }: HintProps): import("react/jsx-runtime").JSX.Element;