import { HTMLAttributes, Ref } from 'react'; import { WithTestId } from '../types'; export interface HintViewProps extends HTMLAttributes, WithTestId { /** Ref корневого элемента. */ hintRef?: Ref; } /** Длина стороны квадрата, составленного из двух стрелок (треугольников). */ export declare const arrowSquareSize: number; /** * "Хинт" - всплывающая подсказка. * @param props Свойства. * @return Элемент. */ export declare function HintView({ hintRef, className, children, 'data-testid': testId, ...rest }: HintViewProps): import("react").JSX.Element; export declare namespace HintView { var Arrow: typeof HintArrow; } /** * Стрелка хинта. * @param props Свойства. * @return Элемент. */ declare function HintArrow({ arrowRef, className, ...rest }: Omit, 'children'> & { arrowRef?: Ref; }): import("react").JSX.Element; export {};