/** * @license * Copyright Google LLC * SPDX-License-Identifier: Apache-2.0 */ import '../../environment/dev.js'; /** * Set attribute on SVGElement if the attribute doesn't have security * implications. If the attribute can potentially cause XSS, throw an error. */ export declare function setSvgAttribute(svg: SVGElement, attr: string, value: string): void;