import { EventHandlers } from './EventHandlers'; import { EventHandlerConnectors } from './interfaces'; export declare abstract class DerivedEventHandlers

= {}> extends EventHandlers { derived: P; unsubscribeParentHandlerListener: () => void; constructor(derived: P, options?: O); inherit(cb: (connectors: EventHandlerConnectors

) => void): () => void; cleanup(): void; }