import { type ComponentPropsWithoutRef } from 'react'; type SidebarSectionProps = ComponentPropsWithoutRef<'h5'> & { text: string; }; declare function SidebarSection({ text, className, ...props }: SidebarSectionProps): import("react/jsx-runtime").JSX.Element; export default SidebarSection; export type { SidebarSectionProps };