import React from "react";
import "./styles.css";
export default function SideBar({ handleOnClick, index, onLogout, email, imageUrl, fullName }: {
    handleOnClick: any;
    index?: number;
    onLogout: any;
    email: any;
    imageUrl: any;
    fullName: any;
}): React.JSX.Element;
