/// import { type TooltipPlacement } from './types'; export type HintIconProps = { /** * Определяет иконку отображения */ variant: 'question' | 'info'; /** * Опции для иконки */ iconOption?: { /** * Определяет тип иконки * @default fill */ variant?: 'fill' | 'outline'; /** * Определяет цвет иконки * @default lightGrey */ color?: 'warning' | 'grey' | 'lightGrey'; }; /** * Текст заголовка BottomDrawer */ title: string; /** * Текст тултипа или контента BottomDrawer */ note: string; /** * Положение тултипа */ tooltipPlacement?: TooltipPlacement; }; export declare const HintIcon: ({ variant, title, note, iconOption, tooltipPlacement, }: HintIconProps) => JSX.Element;