import React from "react"; declare type Props = { type: "single" | "multi"; content: React.ReactNode; selected?: boolean; correct?: boolean; }; declare const TextChoice: ({ type, content, selected, correct }: Props) => JSX.Element; export default TextChoice;