import { FC } from "react"; import { XYCoordinates } from "../interfaces/XYCoordinates"; export declare enum HighlightedSquareType { SELECTION = "selection", DESTINATION = "destination", OCCUPATION = "selected", LAST_MOVE = "lastMove", PREMOVE = "premove", CHECK = "check" } export interface CoordsProps { xYCoordinates: XYCoordinates; types?: HighlightedSquareType[]; width?: number; } export declare const HighlightedSquare: FC;