import React from 'react'; import { NavigationProps } from '..'; export interface SidebarProps { currentPageId?: number; pages: NavigationProps[]; onPageClick: (page: NavigationProps, mouseEvent?: React.MouseEvent) => void; expandOnIcon?: boolean; } declare const Sidebar: ({ pages, onPageClick, currentPageId, expandOnIcon, }: SidebarProps) => React.JSX.Element; export default Sidebar;