/// interface Props { open: boolean; onClose: () => void; currentUser: any; activities?: any; activityFilter: string; onChangeActivityFilter: any; handleResetBiometric: any; handleLogout: any; handleResetPassword: any; handleUpdateProfile: any; handleOpenPost: any; handleOpenNotifs: any; width: number; setWidth: any; selectedTabId: number; setSelectedTabId: (id: number) => void; tabsList: any; roles: any; organizationRole: any; recentApp: any; applications: any; onClickApp: any; handleUploadAvatar: any; avatarHistory: string[]; useTab?: boolean; } declare function SettingPanel({ open, onClose, currentUser, activities, activityFilter, onChangeActivityFilter, handleResetBiometric, handleResetPassword, handleLogout, handleUpdateProfile, handleOpenPost, handleOpenNotifs, width, setWidth, selectedTabId: tabId, setSelectedTabId, tabsList, roles, organizationRole, recentApp, applications, onClickApp, handleUploadAvatar, avatarHistory, useTab, }: Props): JSX.Element; export default SettingPanel;