import { default as Widget } from '../Widget'; declare class Popup extends Widget { protected _position: any; private _config; constructor(); set config(config: any); /** * binds event * @private */ _bindEvent(): void; /** * * @private */ _mountContent(): void; /** * * @private */ _installHook(): void; /** * * @param windowCoord * @private */ _updateWindowCoord(windowCoord: any): void; /** * * @private */ _setCustomClass(): void; /** * Setting wrapper * @param wrapper * @returns {Widget} */ setWrapper(wrapper: any): this; /** * * Setting widget position * @param {*} position * */ setPosition(position: any): this; /** * * @param {*} position * @param {*} content */ showAt(position: any, content: any): this; } export default Popup;