import React from 'react'; import { ComponentType } from '../type'; export declare type DynamicRenderData = { id: string; type?: string; props?: Record; children?: DynamicRenderData[]; component?: React.ReactNode; }; export declare type DynamicRenderProps = { data: DynamicRenderData[]; components: Record; }; export declare const DynamicRender: React.FC;