import { type FC, type PropsWithChildren } from 'react'; import { type AppContextType } from './context'; interface AppProps { } declare const App: FC> & { useApp: () => AppContextType; }; export default App;