import { Theme, UserWithRangeType } from '../../types';
type SideBarProps = {
    theme?: Theme;
    userWithRange: UserWithRangeType[];
    onToggle: () => void;
    opened: boolean;
    accentColor: string;
};
declare function Sidebar(props: SideBarProps): import("react/jsx-runtime").JSX.Element;
export default Sidebar;
