export declare function useWindowLocation(): {
    location: void | Location;
    push: (url?: string | URL | null) => void;
    update: (url?: string | URL | null) => void;
};
