/** * @internal */ export declare const createHistory: (initialValue: T) => { get: () => NonNullable; set: (history: T) => void; undo: () => T | undefined; redo: () => T | undefined; push: (history: T) => void; };