declare class CustomHtmlElement {
    name: string;
    classes: Array<string>;
    attributes: Array<{name: string, value: string}>;
    children: Array<HTMLElement>;
    content: string;
    private _element: HTMLElement;
    constructor(name: string, classes: Array<string>, attributes: Array<{name: string, value: string}>, children: Array<HTMLElement>, content: string);
    webify: () => CustomHtmlElement;
    getElement: () => HTMLElement;
}

export { CustomHtmlElement }