import * as React from "react"; import type { UserInputMap } from "@khanacademy/perseus-core"; type Props = { userInput: UserInputMap; }; export default function UserInputUI({ userInput }: Props): React.JSX.Element; export {};