import { Plugin } from 'ckeditor5/src/core';
import FullScreenUI from './ui';
/**
 * 编辑器全屏
 */
export default class FullScreen extends Plugin {
    static get pluginName(): string;
    static get requires(): (typeof FullScreenUI)[];
}
