import { AttrMutatorConfig } from "./types"; declare function applyAttr(el: Element, name: string, value: unknown): void; declare function applyProp(el: Element, name: string, value: unknown): void; declare function createAttributeMap(): AttrMutatorConfig; declare const attributes: AttrMutatorConfig; declare function updateAttribute(el: Element, name: string, value: unknown, attrs: AttrMutatorConfig): void; export { createAttributeMap, updateAttribute, applyProp, applyAttr, attributes };