export declare type Orientation = 'top' | 'bottom' | 'left' | 'right'; export declare type VerticalOrientation = 'top' | 'bottom'; export declare const enum OrientationFlag { LEFT = 2, RIGHT = 4, TOP = 8, BOTTOM = 16, HORIZONTAL = 6, VERTICAL = 24 } export declare const orientations: { left: OrientationFlag; right: OrientationFlag; top: OrientationFlag; bottom: OrientationFlag; };