/// import { LineType } from "../utils/types"; export interface HintNumbersProps { lineType: LineType; } /** * Translates either row or column hint numbers into HTML div elements. * * The current hint numbers according to the current state of the board * are compared to the static goal hint numbers in order to "cross out" * some numbers in order to assist the user in figuring out what sequences * they've already finished. * * Crossed out hint numbers appear as a different color than normal hint numbers, * and are thus given a different div className than normal hint numbers. * */ export declare function HintNumbers({ lineType }: HintNumbersProps): JSX.Element;