import { ForwardedRef } from "react";
import { TracerRef } from "../utils/hooks/useTracerRef";
import { INativeNavigationContainer, TrackerConfig } from "../types/navigation";
export type NativeNavRef = INativeNavigationContainer;
declare const useNativeNavigationTracker: (ref: ForwardedRef<NativeNavRef>, tracer: TracerRef, config?: TrackerConfig) => void;
export default useNativeNavigationTracker;
