/// import { CellLocation } from "../utils/Matrix"; export interface SquareProps { location: CellLocation; onSquareMouseEnter: (location: CellLocation) => void; onSquareMouseLeave: (location: CellLocation) => void; } export declare function Square({ location, onSquareMouseEnter, onSquareMouseLeave }: SquareProps): JSX.Element;