import React from "react"; import { Config, Metadata } from "./config.ts"; import { Transport } from "./transports/transport-common.ts"; import { InputHistory } from "./input-history/index.ts"; type Props = { config: Config; configPath: string; metadata: Metadata; updates: string | null; unchained: boolean; transport: Transport; inputHistory: InputHistory; }; export default function App({ config, configPath, metadata, unchained, transport, updates, inputHistory }: Props): React.JSX.Element; export {};