declare enum POSITION { /** Top left position */ TOP_LEFT = 0, /** Top center position */ TOP_CENTER = 1, /** Top right position */ TOP_RIGHT = 2, /** Left top position */ LEFT_TOP = 3, /** Left center position */ LEFT_CENTER = 4, /** Left bottom position */ LEFT_BOTTOM = 5, /** Center position */ CENTER = 6, /** Right top position */ RIGHT_TOP = 7, /** Right center position */ RIGHT_CENTER = 8, /** Right bottom position */ RIGHT_BOTTOM = 9, /** Bottom left position */ BOTTOM_LEFT = 10, /** Bottom center position */ BOTTOM_CENTER = 11, /** Bottom right position */ BOTTOM_RIGHT = 12, /** Center top position */ CENTER_TOP = 13, /** Center bottom position */ CENTER_BOTTOM = 14, /** Top edge full span */ TOP_EDGE = 15, /** Bottom edge full span */ BOTTOM_EDGE = 16, /** Left edge full span */ LEFT_EDGE = 17, /** Right edge full span */ RIGHT_EDGE = 18 } export { POSITION };