import { type CSSProperties } from "aphrodite"; import * as React from "react"; export declare const AnswerPill: (props: { selectedAnswers: readonly string[]; showCorrectness?: "correct" | "incorrect"; markerRef?: HTMLElement; side: "top" | "bottom" | "left" | "right"; style?: CSSProperties; hovered?: boolean; focused?: boolean; onClick?: () => void; }) => React.JSX.Element;