/**
 * Create object of HTML attributes for pass-through to the DOM
 * All fields in ignore will be skipped. This should generally match with the marko.json
 * input fields so that duplicate/unwanted attributes will not be rendered
 */
declare function processHtmlAttributes(input: {
    htmlAttributes?: Record<string, any>;
    [key: string]: any;
}, ignore?: string[]): Record<string, string>;
export { processHtmlAttributes };
