/** * useUndoRedo Hook * Undo/Redo functionality for document editing */ import type { UseUndoRedoOptions } from './types'; export declare function useUndoRedo(options?: UseUndoRedoOptions): { undo: () => void; redo: () => void; clear: () => void; getHistory: () => unknown[]; canUndo: boolean; canRedo: boolean; undoDescription: string; redoDescription: string; historyLength: number; currentIndex: number; isDirty: boolean; }; export type { UseUndoRedoOptions, UseUndoRedoState } from './types'; //# sourceMappingURL=useUndoRedo.d.ts.map