import type { Element } from '../types'; export declare function setAttr(el: Element, name: string, value: string): Element; export declare function removeAttr(el: Element, name: string): Element; export declare function addClass(el: Element, className: string): Element; export declare function removeClass(el: Element, className: string): Element; export declare function toggleClass(el: Element, className: string, force?: boolean): Element; export declare function attr(el: Element, name: string): string | undefined; export declare function attrs(el: Element): Record; export declare function data(el: Element): Record; export declare function hasClass(el: Element, className: string): boolean; export declare function classes(el: Element): string[]; //# sourceMappingURL=attributes.d.ts.map