/**
 * useHistory Hook
 *
 * React hook for managing the history system (undo/redo)
 */
import type { HistoryActions } from './types';
/**
 * Hook to access and control the global history system
 *
 * @returns Actions and state for history management
 */
export declare function useHistory(): HistoryActions;
