import { FunctionDesc, PropDesc, ClientConn } from '@ticlo/core/editor'; export interface ValueEditorProps { conn?: ClientConn; keys?: string[]; name?: string; value: any; desc: PropDesc; locked?: boolean; onChange?: (value: any) => void; addSubBlock?: (id: string, desc?: FunctionDesc, data?: any) => void; }