import React from 'react'; declare global { interface Window { eContext: any; } } interface AppProps { children: React.ReactNode; } export declare function App({ children }: AppProps): React.JSX.Element; export {};