export declare class Events {
    events: Record<string, ((...args: any) => void)[]>;
    addEvent(key: string, fnc: (...args: any) => void): void;
    removeEvent(key: string, fnc: (...args: any) => void): void;
    removeEventAll(): void;
    emit(key: string, args: any): void;
}
