import { type ElementType, type ReactNode } from 'react'; import { type CounterProps } from '../types'; export type ListProps = { collapsedIn: boolean; items: [ key: string, value: { text: ReactNode; active: boolean; component: ElementType; /** * Объект счетчика элемента меню */ counter?: CounterProps; } ][]; }; export declare const List: (props: ListProps) => JSX.Element;