import { type RefObject } from "react"; import type { Params } from "./types.js"; export declare const useFocusReset: ({ route, containerRef, }: { route?: { key: string; name: string; params: Params; } | undefined; containerRef: RefObject; }) => void;