/** * @license * Copyright Google LLC * SPDX-License-Identifier: Apache-2.0 */ import '../../environment/dev.js'; /** * Sets the Href attribute from the given URL. * javascript: and data: URL are blocked as they can lead to XSS and the * element only loads resources same-origin. */ export declare function setSvgUseHref(useEl: SVGUseElement, url: string): void;