import React from "react"; import "./index.less"; type DrawerUserInfo = { [title: string]: React.ReactElement | string | null; }; interface Props { onLogout: () => void; drawerInfo: DrawerUserInfo; } interface State { showDrawer: boolean; } export declare class NavigatorSide extends React.PureComponent { static displayName: string; constructor(props: Props); showDrawer: () => void; closeDrawer: () => void; render(): React.JSX.Element; } export {};