import React from 'react'; import { ExternalReplCommand } from '../repl.js'; interface AppProps { externalCommands: ExternalReplCommand[]; } export default function App({ externalCommands }: AppProps): React.ReactNode; export {};