import React from 'react';
import { SidebarProps } from './Sidebar.types';
/**
 * Sidebars are navigation components that are placed on the side of the screen.
 */
declare const Sidebar: React.FC<SidebarProps>;
export default Sidebar;
