import { AnyObject } from './basic'; import { Point } from './geometric'; export interface Element { readonly x: number; readonly y: number; readonly active: boolean; readonly options: O; tooltipPosition(useFinalPosition?: boolean): Point; hasValue(): boolean; getProps

(props: P, final?: boolean): Pick; } export const Element: { prototype: Element; new (): Element; };