import { Component, RuntimeScene, VirtualChildComponent } from '@easytwin/runtime'; import { UISchema } from '../type'; import * as React from 'react'; export * from './uicomponents'; export interface UIGeneratorProps { schema: UISchema; comp: Component | VirtualChildComponent | RuntimeScene; json: T; onUpdate: (value: T, changes: { path: string; value: unknown; }) => void; onConfirm: (value: T, changes: { path: string; value: unknown; }) => void; } export declare const UIGenerator: React.FC;