export declare const setAttributes: (element: HTMLElement, attributes: {
    [key: string]: string;
}) => void;
export declare const getAttribute: (element: HTMLElement, attribute: string) => string | null;
export declare const hasAttribute: (element: HTMLElement, attribute: string) => boolean;
