import React from 'react'; type AppContainerProps = { children?: React.ReactNode; }; declare const AppContainer: (props: AppContainerProps) => any; export default AppContainer;