export declare class EventListObj { private list; private dbList; private enterList; private outList; private listType; private dbListType; private enterListType; private outListType; Get(eid?: string): any; Set(obj: any, func: any): void; Remove(eid?: string): void; GetDb(eid?: string): any; SetDb(obj: any, func: any): void; RemoveDb(eid?: string): void; GetEnter(eid?: string): any; SetEnter(obj: any, func: any): void; RemoveEnter(eid?: string): void; GetOut(eid?: string): any; SetOut(obj: any, func: any): void; RemoveOut(eid?: string): void; GetType(type?: string): any; SetType(type: string, func: any): void; RemoveType(type?: string): void; GetDbType(type?: string): any; SetDbType(type: string, func: any): void; RemoveDbType(type?: string): void; GetEnterType(type?: string): any; SetEnterType(type: string, func: any): void; RemoveEnterType(type?: string): void; GetOutType(type?: string): any; SetOutType(type: string, func: any): void; RemoveOutType(type?: string): void; }