/*! * Jodit Editor PRO (https://xdsoft.net/jodit/) * See LICENSE.md in the project root for license information. * Copyright (c) 2013-2022 Valeriy Chupurnov. All rights reserved. https://xdsoft.net/jodit/pro/ */ import './box.less'; import type { IJodit } from 'jodit/types'; import type { ISnapshotItem } from '../interface'; import { UIElement } from 'jodit/core/ui'; export declare class UIBackupBox extends UIElement { className(): string; private list; private preview; private latestSelected; constructor(jodit: IJodit); build(items: ISnapshotItem[]): void; destruct(): void; private onSelectItem; private onChooseItem; chooseSelected(): void; }