import { OperationHistory } from '../entities/OperationHistory.js'; import { Snapshot } from '../entities/Snapshot.js'; export declare function createOperationHistory(operation: Omit): Promise; export declare function updateOperationHistoryById(id: number, operation: Partial>): Promise; export declare function getOperationHistoriesPage(page: number, pageSize: number): Promise; export declare function getOperationHistoryById(id: number): Promise; export declare function createSnapshot(snapshotData: Omit): Promise; export declare function getSnapShotByHistoryId(historyId: number): Promise; export declare function rollbackByHistoryId(historyId: number): Promise;