import { type ListItemButtonProps as MuiListItemButtonProps } from '@mui/material'; import { type ElementType } from 'react'; import { type TooltipProps } from '../Tooltip'; import { type WithoutEmotionSpecific } from '../types'; export type ListItemButtonProps = Omit, 'disableRipple'> & { tooltipPlacement?: TooltipProps['placement']; /** * Текст тултипа при заблокированном состоянии элемента меню */ disabledReason?: string; /** * Текст тултипа при наведении на элемент меню */ note?: string; component?: ElementType; /** * withoutContainer необходим для обратной совместимости и рендерит компонент без тега li */ withoutContainer?: boolean; }; export declare const ListItemButton: import("react").ForwardRefExoticComponent & import("react").RefAttributes>;