import { ReactNode } from "react";
import { Coords, Square as Sq } from "../types";
type SquareProps = {
    children: ReactNode;
    setSquares: React.Dispatch<React.SetStateAction<{
        [square in Sq]?: Coords;
    }>>;
    square: Sq;
};
export declare function Square({ square, setSquares, children, }: SquareProps): import("react/jsx-runtime").JSX.Element;
export {};
