import { Service } from '../base/service'; export interface UndoService extends Service { commitLastSnapshot(): void; pauseTakingSnapshots(): () => void; } export declare const NULL_UNDO_SERVICE: UndoService;