//#region src/router/useRouteDepth/useRouteDepth.d.ts /** * Reads the current `RouterView` nesting depth. * * @returns Current route depth. The root provider starts at `-1`. * * @throws When route depth has not been installed. * * @example * ```tsx * const depth = useRouteDepth(); * ``` */ declare function useRouteDepth(): number; //#endregion export { useRouteDepth }; //# sourceMappingURL=useRouteDepth.d.cts.map