import React from "react"; export interface IndicatorContent { visible: string; screenReader: string; labelledBy?: string; describedBy?: string; } export interface IndicatorProps { buttonRef: React.Ref; checked: boolean; content: IndicatorContent; shape: "circle" | "square"; showCorrectness?: "correct" | "wrong"; updateChecked: (isChecked: boolean) => void; } declare const Indicator: (props: IndicatorProps) => React.JSX.Element; export default Indicator;