import { default as Widget } from '../Widget'; declare class MapSplit extends Widget { private _baseLayer; private _moveActive; constructor(); /** * * @private */ _bindEvent(): void; /** * * @private */ _unbindEvent(): void; /** * * @private */ _mountContent(): void; /** * * @param movement * @private */ _moveHandler(movement: any): void; /** * * @param baseLayer * @param splitDirection * @returns {MapSplit} */ addBaseLayer(baseLayer: any, splitDirection?: number): this; } export default MapSplit;