/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import './google-maps.less'; import type { IUIMapState } from './interface'; import type { IJodit, Nullable } from 'jodit/types'; import { Plugin } from 'jodit/core/plugin'; import './config'; import './assets'; export declare class googleMaps extends Plugin { requires: string[]; className(): string; buttons: Plugin['buttons']; protected afterInit(jodit: IJodit): void; protected beforeDestruct(jodit: IJodit): void; protected onOpenOnDblClick(image: HTMLImageElement): void | false; protected openMapEditor(target: Nullable, initialState?: Partial): Promise; private dialog; private getDialog; private insertMap; protected onBeforeSetNativeEditorValue(data: { value: string; }): void; protected onAfterGetValueFromEditor(data: { value: string; }, consumer?: string): void; }