import type { NavigationState } from '@react-navigation/routers'; import type { EventMapCore } from './types'; import type { NavigationEventEmitter } from './useEventEmitter'; type Options = { state: State; emitter: NavigationEventEmitter>; }; /** * Hook to take care of emitting `focus` and `blur` events. */ export default function useFocusEvents({ state, emitter, }: Options): void; export {}; //# sourceMappingURL=useFocusEvents.d.ts.map