export declare namespace EventType {
    type EventObj<T> = Map<keyof T, Map<string, EventFun>>;
    type EventFun<VT = any> = (value?: VT) => void;
    type LogType = 'add' | 'remove' | 'notification';
}
