import { Ref } from 'react'; import { HintViewProps } from './hint-view'; export interface HintProps extends HintViewProps { /** Нужно ли показать хинт. */ open?: boolean; /** Ref элемента "стрелки". */ arrowRef?: Ref; } /** * Всплывающий хинт. * @param props Свойства. * @return Элемент. */ export declare function Hint({ open, ...rest }: HintProps): import("react").JSX.Element | null;