import type { KeyedListenerMap } from './NavigationBuilderContext'; /** * Hook which lets child navigators add getters to be called for obtaining rehydrated state. */ export default function useKeyedChildListeners(): { keyedListeners: { getState: Record; beforeRemove: Record; }; addKeyedListener: (type: T, key: string, listener: KeyedListenerMap[T]) => () => void; }; //# sourceMappingURL=useKeyedChildListeners.d.ts.map