import React from "react";
export type UiComponentType<T extends {}> = {
    component: typeof React.Component<T, any>;
    props: T;
};
export declare class GroupPfvUI {
    static fvUI(element: string | HTMLElement, uiComponent: UiComponentType<any>[]): void;
    static addBootstrapElement(elementId: string): HTMLElement;
    private static htmlElementUI;
}
