import { ComponentPropsWithoutRef } from 'react'; /** * Props for the SideNavGroup component * @extends ComponentPropsWithoutRef<"li"> */ export type SideNavGroupProps = ComponentPropsWithoutRef<"li"> & { /** * The label text displayed for the navigation group */ label: string; }; /** * SideNavGroup component for grouping related navigation links within a SideNav. * * Features: * - Groups related navigation links with labels * - Accessible with proper ARIA labeling * - Semantic grouping for screen readers * - Consistent styling and spacing * - Unique ID generation for accessibility * * @example * * * Introduction * * * Installation * * */ export declare const SideNavGroup: import('react').ForwardRefExoticComponent, HTMLLIElement>, "ref"> & { /** * The label text displayed for the navigation group */ label: string; } & import('react').RefAttributes>;