import { EntityType } from '../data-model/entity'; import { AttributeData } from './attribute-data'; export declare class Entity { name: string; prompt: string; entityName: string; attributes: Array; entityType: EntityType; /** * Constructor * * @param any */ constructor(entity?: Entity); }