import { type ReactNode } from 'react'; export type SidebarPopoverProps = { /** * Заголовок списка */ title: string; /** * Элементы SidebarPopover.Item */ children: ReactNode; }; export declare const SidebarPopover: { ({ title, children }: SidebarPopoverProps): JSX.Element; Item: import("react").ForwardRefExoticComponent & import("react").RefAttributes>; };