export declare class Tsx {
    "use strict": any;
    static exception(message: string): HTMLElement;
    static renderStyle(style: string): HTMLElement;
    static renderTag(tag: string, props?: any, ...children: any[]): HTMLElement;
    static processChildren(element: HTMLElement, children: any[]): void;
    static processChild(element: HTMLElement, child: any): void;
    static setElementAttribs(element: HTMLElement, props?: any): void;
    static createElement(tag: string, props?: any, ...children: any[]): HTMLElement;
}
export declare let AjsDebugTsxFactory: Tsx;
