import { type ComponentPropsWithRef, type ElementType, type ReactNode } from 'react'; export type SidebarPopoverItemProps = { /** * Заголовок */ title: string; /** * Поясняющий текст */ description?: string; /** * Иконка элемента */ icon?: ReactNode; /** * Функция вызываемая при клике на элемент */ onClick?: () => void; /** * Если true, элемент будет заблокирован */ isDisabled?: boolean; /** * Причина блокировки элемента */ disabledReason?: string; /** * Тип элемента */ component?: TComponent; } & ComponentPropsWithRef;