import type { NormalizedSidebarGroup, SidebarDivider as SidebarDividerType, SidebarItem as SidebarItemType, SidebarSectionHeader as SidebarSectionHeaderType } from '@rspress/core'; import type React from 'react'; import './SidebarGroup.scss'; export interface SidebarGroupProps { id: string; item: NormalizedSidebarGroup; depth: number; className?: string; setSidebarData: React.Dispatch>; } export declare function SidebarGroup(props: SidebarGroupProps): import("react/jsx-runtime").JSX.Element;