/**
 * The Alien Path Direction Enum
 */
export declare enum AlienPathDirectionEnum {
    /**
     * North
     */
    north = "north",
    /**
     * East
     */
    east = "east",
    /**
     * West
     */
    west = "west",
    /**
     * South
     */
    south = "south"
}
