/// import { Serializable } from './private/Serializable.js'; declare enum LogoStyle { Minimal = "minimal", Extended = "extended" } interface FocusGestureJSON { type: string; } type FocusGesture = Serializable; declare class TapToFocus implements FocusGesture, Serializable { private type; toJSONObject(): FocusGestureJSON; } type ZoomGesture = Serializable; interface ZoomGestureJSON { type: string; } declare class SwipeToZoom implements ZoomGesture, Serializable { private readonly type; toJSONObject(): ZoomGestureJSON; } export { type FocusGesture, type FocusGestureJSON, LogoStyle, SwipeToZoom, TapToFocus, type ZoomGesture, type ZoomGestureJSON };