import * as React from 'react'; import { ListItemProps } from '../List'; export declare type LocalSideNavItemProps = { href?: string; isActive?: boolean; navId?: string; }; export declare type SideNavItemProps = ListItemProps & LocalSideNavItemProps; export declare const SideNavItem: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };