import type { ITopNotifier } from "../types"; type CallbackFunc = (TopNotifier: ITopNotifier) => void; export declare const onAddTopNotifier: (callback: CallbackFunc) => () => void; export {};