import { default as Widget } from '../Widget'; declare class Tooltip extends Widget { constructor(); /** * * @param {*} windowCoord * */ _updateWindowCoord(windowCoord: any): void; /** * * @param {*} position * @param {*} content * */ showAt(position: any, content: any): this; } export default Tooltip;