/** Navigation direction: move to the previous photo. */ export declare const DIRECTION_PREV = "prev"; /** Navigation direction: move to the next photo. */ export declare const DIRECTION_NEXT = "next"; /** Pointer input type: touch (finger). */ export declare const POINTER_TYPE_TOUCH = "touch"; /** Pointer input type: stylus/pen. */ export declare const POINTER_TYPE_PEN = "pen"; /** Swipe/scroll direction: forwards (left-to-right, next). */ export declare const FORWARDS = "forwards"; /** Swipe/scroll direction: backwards (right-to-left, previous). */ export declare const BACKWARDS = "backwards"; /** Key code for the left arrow key. */ export declare const ARROW_LEFT_KEYCODE = 37; /** Key code for the right arrow key. */ export declare const ARROW_RIGHT_KEYCODE = 39; /** Key code for the Escape key. */ export declare const ESC_KEYCODE = 27; /** Key code for the Enter key. */ export declare const ENTER_KEYCODE = 13; /** Key code for the Space key. */ export declare const SPACE_KEYCODE = 32; /** * Delay in milliseconds to wait before handling touch events after a mouse * event, used to avoid double-firing on devices that emulate mouse events. */ export declare const TOUCHEVENT_COMPAT_WAIT = 500; /** Minimum horizontal swipe distance in pixels required to trigger navigation. */ export declare const SWIPE_THRESHOLD = 40; /** Default width of a thumbnail image in pixels. */ export declare const THUMBNAIL_WIDTH = 58; /** Default height of a thumbnail image in pixels. */ export declare const THUMBNAIL_HEIGHT = 50; /** Border width applied on each side of the thumbnail frame in pixels. */ export declare const THUMBNAIL_BORDER_WIDTH = 4; /** Gap between adjacent thumbnails in pixels. */ export declare const THUMBNAIL_OFFSET = 8; /** Default opacity for overlay/backdrop elements. */ export declare const DEFAULT_OPACITY = 1; /** Default background color of the lightbox overlay (opaque black). */ export declare const DEFAULT_COLOR = "rgba(0,0,0,1)"; /** Standard foreground/icon color (opaque white). */ export declare const NORMAL_COLOR = "rgba(255,255,255,1)"; /** Inverted foreground/icon color (near-black, used on light backgrounds). */ export declare const INVERSE_COLOR = "rgba(1,1,1,1)"; /** Default CSS z-index for the lightbox overlay, keeping it above most content. */ export declare const DEFAULT_Z_INDEX = 2000;