import { FC } from "react"; import type { Run } from "../execution"; interface ResultsProps { run: Run; } declare const Results: FC; export default Results;