import './Menu.css'; import React from 'react'; import type { RefObject } from 'react'; import { type PopoverProps } from '../Popover'; import { type MenuListProps } from './components'; export declare const cnMenu: import("@bem-react/classname").ClassNameFormatter; export type MenuProps = { /** Свойства компонента MenuList */ menuListProps?: Omit; menuListRef?: RefObject; } & Omit; export declare const Menu: React.ForwardRefExoticComponent & React.RefAttributes>;