/** * @license Copyright (c) 2003-2026, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-licensing-options */ /** * @module email/integrations/generalhtmlintegration * @publicApi */ import { Plugin } from '@ckeditor/ckeditor5-core'; import { EmailConfigurationLogger } from '../emailconfigurationlogger.js'; /** * The plugin that warns about using unsupported HTML elements in the email integration. */ export declare class GeneralHtmlIntegrationSupport extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof EmailConfigurationLogger]; /** * @inheritDoc */ static get pluginName(): "GeneralHtmlIntegrationSupport"; /** * @inheritDoc */ static get isOfficialPlugin(): true; /** * @inheritDoc */ static get isPremiumPlugin(): true; /** * @inheritDoc */ init(): void; }