import { type ComponentType, type ReactNode, type SVGProps } from 'react'; type SidebarIcon = ComponentType>; type SidebarGroupProps = { active?: boolean; children: ReactNode; icon: SidebarIcon; text: string; }; declare function SidebarGroup({ active, children, icon, text }: SidebarGroupProps): import("react/jsx-runtime").JSX.Element; export default SidebarGroup; export type { SidebarGroupProps };