import { type Root } from 'react-dom/client'; export declare function createReactComponentDynamically(customComponent: any, targetElm: HTMLElement, props?: any, root?: Root | null): { component: T; root: Root; }; export declare function loadReactComponentDynamically(customComponent: any, targetElm: HTMLElement, props?: any, root?: Root | null): Promise<{ component: T; root: Root; }>;