/** * @license * Copyright Google LLC * SPDX-License-Identifier: Apache-2.0 */ import { Url } from '../../builders/url_builders.js'; /** * setLocationHref safely sets {@link Location.href} on the given * {@link Location} with given {@link Url}. */ export declare function setLocationHref(loc: Location, url: Url): void; /** * locationReplace safely calls {@link Location.replace} on the given * {@link Location} with given {@link Url}. */ export declare function locationReplace(loc: Location, url: Url): void; /** * locationAssign safely calls {@link Location.assign} on the given * {@link Location} with given {@link Url}. */ export declare function locationAssign(loc: Location, url: Url): void;