import { IEvent } from './declarations';
export declare function getUndoEvent<T extends IEvent>(history: T[], author: string): T | undefined;
export declare function getRedoEvent<T extends IEvent>(history: T[], author: string): T | undefined;
