/** * @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 */ import type { Editor } from '@ckeditor/ckeditor5-core'; import type { UploadcareSource } from '../uploadcareconfig.js'; import { type UploadcareEditing } from '../uploadcareediting.js'; declare const UploadcareController_base: { new (): import("@ckeditor/ckeditor5-utils").Observable; prototype: import("@ckeditor/ckeditor5-utils").Observable; }; /** * The Uploadcare controller. It is used by the {@link module:uploadcare/uploadcarecommand~UploadcareCommand Uploadcare command} * to initialize the uploading flow. The controller opens the dialog with the context of the chosen uploading source. */ export declare class UploadcareController extends /* #__PURE__ -- @preserve */ UploadcareController_base { /** * @inheritDoc */ constructor(editor: Editor, editing: UploadcareEditing, source: UploadcareSource); /** * Destroys the controller and its components. */ destroy(): void; } export {};