import { Matrix } from "../utils/Matrix"; import { LineType, SquareValue } from "../utils/types"; export declare function useBoard(): { resetBoard: (matrix: Matrix) => void; currentBoard: Matrix; workingBoard: Matrix; updateCurrentBoard: () => void; getLine: (lineType: LineType, index: number) => SquareValue[]; };