import { HTMLAttributes, ReactNode } from 'react';
export interface SidebarItemListProps extends HTMLAttributes<HTMLUListElement> {
    children: ReactNode;
}
export declare const SidebarItemList: import('react').ForwardRefExoticComponent<SidebarItemListProps & import('react').RefAttributes<HTMLUListElement>>;
