/** * @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 ObservableMixinConstructor } from "@ckeditor/ckeditor5-utils"; import type { Editor } from "@ckeditor/ckeditor5-core"; import type { UploadcareSource } from "../uploadcareconfig.js"; import { type UploadcareEditing } from "../uploadcareediting.js"; declare const UploadcareControllerBase: ObservableMixinConstructor; /** * 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 UploadcareControllerBase { /** * @inheritDoc */ constructor(editor: Editor, editing: UploadcareEditing, source: UploadcareSource); /** * Destroys the controller and its components. */ destroy(): void; } export {};