import { SelectedRoute } from "@pastweb/tools"; //#region src/router/useRoute/useRoute.d.ts /** * Reads the current route at the active `RouterView` depth. * * @returns The selected route for the current depth. * * @example * ```tsx * const currentRoute = useRoute(); * * return

{currentRoute.path}

; * ``` */ declare const useRoute: () => SelectedRoute; //#endregion export { useRoute }; //# sourceMappingURL=useRoute.d.cts.map