export declare enum MoveDirection {
    bottom = "bottom",
    bottomLeft = "bottom-left",
    bottomRight = "bottom-right",
    left = "left",
    none = "none",
    right = "right",
    top = "top",
    topLeft = "top-left",
    topRight = "top-right",
    outside = "outside",
    inside = "inside"
}
export type MoveDirectionAlt = "bottom-left" | "bottom-right" | "top-left" | "top-right";
