/*!
 * Jodit Editor PRO (https://xdsoft.net/jodit/)
 * See LICENSE.md in the project root for license information.
 * Copyright (c) 2013-2026 Valerii Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/
 */
import type { IViewBased } from "jodit/esm/types/index";
import { Plugin } from "jodit/esm/core/plugin/plugin";
import type { IViewOptionsPro } from "../../types/view";
export declare class license<T extends IViewBased<IViewOptionsPro> = IViewBased<IViewOptionsPro>> extends Plugin<T> {
    static make(jodit: IViewBased<IViewOptionsPro>): license;
    /** @override */
    protected afterInit(jodit: T): void;
    /** @override */
    protected beforeDestruct(jodit: T): void;
    private validateLicenseRemote;
}
