type UseAppEventsProps = {
    debug: boolean;
};
/** Hook for managing application events. */
declare const useAppEvents: <EventType extends string>(props?: UseAppEventsProps) => {
    listenForEvents: import('../../base').BaseListenForEvents<EventType> & {
        once: import('../../base').BaseListenForEvents<EventType>;
    };
    notifyEventListeners: import('../../base').BaseNotifyEventListeners<EventType>;
};
export default useAppEvents;
