import { ETextActions, ECursorActions } from '../../stateChanger/StateChanger.module';
export declare const EventHandlerName = "CommonEvent";
export interface EventHandler<T> {
    type: ETextActions | ECursorActions;
    data: T;
}
