import { Component, RuntimeScene, VirtualChildComponent } from '@easytwin/runtime'; import { UIPrimitive } from '../../type'; import * as React from 'react'; interface PrimitiveProps { comp: Component | VirtualChildComponent | RuntimeScene; target: any; disabled?: boolean; schema: UIPrimitive; onChange: (name: string, value: unknown) => void; onConfirm: (name: string, value: unknown) => void; } export declare const Primitive: React.FC; export {};