import React from 'react'; interface SidenavItemProps { label: string; icon?: React.ReactNode; to?: string; href?: string; onClick?: () => void; className?: string; } declare const SidebarItem: React.FC; export default SidebarItem;