import type { SnapshotType } from 'jodit/types'; import type { History } from './history'; export declare class Command { readonly oldValue: SnapshotType; readonly newValue: SnapshotType; private readonly history; readonly tick: number; undo(): void; redo(): void; constructor(oldValue: SnapshotType, newValue: SnapshotType, history: History, tick: number); }