import { Component, PropsWithChildren } from 'react'; import { RouteComponentProps } from 'react-router-dom'; import { PlaygroundContext } from './components/AppContext'; type AppState = { fatalError: Error | null; context: PlaygroundContext | null; showLoader: boolean; isAppContextSet: boolean; }; declare class App extends Component, AppState> { static getDerivedStateFromError(error: any): { fatalError: any; }; constructor(props: PropsWithChildren); componentDidMount(): Promise; componentDidCatch(error: any, info: any): void; render(): import("react/jsx-runtime").JSX.Element | null; } declare const _default: import("react").ComponentClass>, "children">, any> & import("react-router").WithRouterStatics; export default _default;