import { SidebarEvent } from '../types/sidebarEvent.type'; declare const listenSidebarChanges: (type: 'group' | 'category', callback: (e: SidebarEvent) => any) => void; declare const unListenSidebarChanges: (type: 'group' | 'category', callback: (e: SidebarEvent) => any) => void; export { unListenSidebarChanges, listenSidebarChanges };