import type { ComponentProps, FC, PropsWithChildren } from "react"; export interface SidebarItemsProps extends PropsWithChildren, ComponentProps<"div"> { } export declare const SidebarItems: FC;