/// export interface AppProps { id: string; title: string; icon: string; } declare function App(props: AppProps): JSX.Element; export default App;