export declare type PuzzlePiece = number;
export declare type PuzzlePieces = readonly PuzzlePiece[];
export declare enum MoveDirection {
    BOTTOM = "bottom",
    LEFT = "left",
    RIGHT = "right",
    TOP = "top"
}
