import { FC } from 'react'; import { SideNavigationProps, SideNavigationSubComponents } from './SideNavigationTypes'; /** * The side navigation bar is used to display the secondary navigation elements * of an application. These include a list of links that can be used to move * between sections or pages within the application or the site. * * @example * First Item Second Item Item 1 Active Item 2 Item 3 First Item Second Item * @see https://design.avaya.com/components/side-navigation */ export declare const SideNavigation: FC & SideNavigationSubComponents;