export interface SidebarItemProps { icon?: string; label: string; href?: string; active?: boolean; badge?: string; className?: string; onClick?: (e: React.MouseEvent) => void; } export declare function SidebarItem({ icon, label, href, active, badge, className, onClick, }: SidebarItemProps): import("react/jsx-runtime").JSX.Element;