/** * @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 uploadcare/uploadcareuploadadapter * @publicApi */ import { Plugin } from '@ckeditor/ckeditor5-core'; import { FileRepository } from '@ckeditor/ckeditor5-upload'; import { UploadcareEditing } from './uploadcareediting.js'; import { ImageUploadEditing, ImageUploadProgress } from '@ckeditor/ckeditor5-image'; /** * A plugin that enables file uploads in CKEditor 5 using the Uploadcare server–side connector. * * Check out the {@glink features/images/image-upload/image-upload Image upload overview} guide to learn about * other ways to upload images into CKEditor 5. */ export declare class UploadcareUploadAdapter extends Plugin { /** * @inheritDoc */ static get requires(): readonly [typeof ImageUploadEditing, typeof ImageUploadProgress, typeof FileRepository, typeof UploadcareEditing]; /** * @inheritDoc */ static get pluginName(): "UploadcareUploadAdapter"; /** * @inheritDoc */ static get isOfficialPlugin(): true; /** * @inheritDoc */ static get isPremiumPlugin(): true; /** * @inheritDoc */ afterInit(): Promise; }