import React, { AllHTMLAttributes } from 'react';
import { ChildComponent } from '../Models/ChildComponent';
import { ChildAttributesItem } from '../types';
declare class ElementCustomization {
content?: any;
elementAttributes: React.AllHTMLAttributes;
}
export declare function getElementCustomization(childElementAttributes: AllHTMLAttributes, props: any, childComponent?: ChildComponent): ElementCustomization;
export declare const addElementAttributes: (elementAttributes: ChildAttributesItem, props: any, childComponent?: ChildComponent) => ChildComponent;
export {};