import React from 'react'; import { SideNavProps } from './SideNav.types'; declare const sideNavSelector: string; export { sideNavSelector }; /** * The SideNav component should be used for any area of our product that has a navigational structure. * * ``` Back to Home * ``` * * @param props.className Class name that will be applied to the root-level element. * @param props.children Content that will be rendered inside the root-level element. * @param props.baseFontSize Determines the base font size for the menu items. * @param props.widthOverride Provides an override for the SideNav width. * @param props.collapsed Allows consuming applications to control the collapsed state of the navigation. * @param props.setCollapsed Consuming application's collapsed-state management controller */ declare const SideNav: React.ForwardRefExoticComponent>; export default SideNav; //# sourceMappingURL=SideNav.d.ts.map