/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
import { NgZone, Renderer2 } from "@angular/core";
/**
 * @hidden
 */
export declare const setHTMLAttributes: (attributes: {
    [key: string]: string;
}, renderer: Renderer2, element: Element, zone?: NgZone) => void;
/**
 * @hidden
 */
export declare const removeHTMLAttributes: (attributes: {
    [key: string]: string;
}, renderer: Renderer2, element: Element) => void;
/**
 * @hidden
 */
export declare const parseAttributes: (target: {
    [key: string]: string;
}, source: {
    [key: string]: string;
}) => {
    [key: string]: string;
};
/**
 * @hidden
 */
export declare const applyAttributes: (attributes: {
    [key: string]: string;
}, renderer: Renderer2, element: Element) => void;
