/** * An enumeration of the possible sides of a rectangle and directions parallel to the axes of coordinates. * @public */ export declare enum Side { /** * Bottom side or direction. * @public */ Bottom = "bottom", /** * Left side or direction. * @public */ Left = "left", /** * Right side or direction. * @public */ Right = "right", /** * Top side or direction. * @public */ Top = "top" } /** * An enumeration of the possible corners of a rectangle. * @public */ export declare enum Corner { /** * Bottom left corner. * @public */ BottomLeft = "bottom-left", /** * Bottom right corner. * @public */ BottomRight = "bottom-right", /** * Top left corner. * @public */ TopLeft = "top-left", /** * Top right corner. * @public */ TopRight = "top-right" } /** * An enumeration of the possible horizontal alignments within a horizontal range of coordinates. * @public */ export declare enum HorizontalAlign { /** * Start of an horizontal range of coordinates. * @public */ Left = "left", /** * Middle of an horizontal range of coordinates. * @public */ Center = "center", /** * End of an horizontal range of coordinates. * @public */ Right = "right" } /** * An enumeration of the possible vertical alignments within a vertical range of coordinates. * @public */ export declare enum VerticalAlign { /** * Start of a vertical range of coordinates. * @public */ Top = "top", /** * Middle of a vertical range of coordinates. * @public */ Center = "center", /** * End of a vertical range of coordinates. * @public */ Bottom = "bottom" }