import { Attr } from "../dom/interfaces";
/**
 * Changes the value of an existing attribute.
 *
 * @param attribute - an attribute node
 * @param value - attribute value
 */
export declare function attr_setAnExistingAttributeValue(attribute: Attr, value: string): void;
