/*! * 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 './item.less'; import type { IJodit } from 'jodit/types'; import type { ISnapshotItem } from '../interface'; import { UIElement } from 'jodit/core/ui'; export declare class UIBackupItem extends UIElement { data: ISnapshotItem; className(): string; constructor(jodit: IJodit, data: ISnapshotItem); private formatDate; focus(): void; }