export declare type Direction = "NORTH" | "EAST" | "SOUTH" | "WEST";
export declare const DIRECTIONS: readonly Direction[];
export declare function getOppositeDirection(dir: Direction): Direction;
