import React from 'react'; import { Agent } from '../agent/index.js'; interface Props { agent: Agent; } export default function App({ agent }: Props): React.JSX.Element; export {};