import * as React from 'react'; import { ListProps } from '../List'; export declare type LocalSideNavLevelProps = { title?: React.ReactElement | string; }; export declare type SideNavLevelProps = ListProps & LocalSideNavLevelProps; export declare const SideNavLevelContext: React.Context<{ level: number; }>; export declare const SideNavLevel: React.ForwardRefExoticComponent & React.RefAttributes> & { displayName?: string; useProps: (props?: Partial, config?: { disableCSSProps?: string[]; themeKey?: string; }) => any; };