export declare type Entity = { name: string; type: string; label?: string; datatype?: string; desc?: string; children?: Entity[] | Record; meta?: Record; addChild: (e: Entity, name?: string) => void; }; export declare type DataType = 'string' | 'boolean' | 'date';