import { IDict } from "../__utils/type"; export declare const renderComponent: (Component: any) => (props: any) => JSX.Element; interface CompositeUIProps { config: any; typeMap: IDict<(Component: any) => any>; } export declare const CompositeUI: ({ config, typeMap }: CompositeUIProps) => JSX.Element; export default CompositeUI;