import type { ComponentProps, FC, PropsWithChildren } from "react"; export interface SidebarItemGroupProps extends PropsWithChildren, ComponentProps<"ul"> { } export declare const SidebarItemGroup: FC;