declare class LocalDispatcherImpl {
    private events;
    init(): void;
    add(e: string, f: (...args: any[]) => void): void;
    remove(e: string, f: (...args: any[]) => void): void;
    dispatch(e: string, ...args: any[]): void;
    clear(): void;
    dispose(): void;
}
export declare let LocalDispatcher: {
    getInstance: () => LocalDispatcherImpl;
};
export {};
