import React from 'react'; export default class BasicLayout extends React.PureComponent { static childContextTypes: { location: any; breadcrumbNameMap: any; }; state: { isMobile: any; }; props: any; constructor(props: any); getChildContext(): { location: any; breadcrumbNameMap: any; }; UNSAFE_componentWillMount(): void; componentDidMount(): void; componentWillUnmount(): void; enquireHandler(_enquireHandler: any): void; getPageTitle: () => string; getBaseRedirect: () => string | undefined; handleMenuCollapse: (collapsed: any) => void; handleNoticeClear: (type: any) => void; handleMenuClick: ({ key }: any) => void; handleNoticeVisibleChange: (visible: any) => void; render(): JSX.Element | undefined; }