import type { ListTable } from '@visactor/vtable'; import type { HistoryCommand } from './types'; export declare function replayCommand(args: { table: ListTable; vtableSheet: any; cmd: HistoryCommand; direction: 'undo' | 'redo'; deleteRecordsByReference: (records: any[]) => void; }): void;