import { Location } from "@pastweb/tools"; //#region src/router/useLocation/useLocation.d.ts /** * Reads the current router location and re-renders when it changes. * * @returns The router `Location` object. * * @example * ```tsx * const location = useLocation(); * * return {location.pathname}; * ``` */ declare const useLocation: () => Location; //#endregion export { useLocation }; //# sourceMappingURL=useLocation.d.ts.map