import WidgetEntity from "./widgets/WidgetEntity"; export default class DeclareFile { nameSpace: string; name: string; hidden: boolean; components: Array; constructor(nameSpace: string, name: string); addComponent(component: WidgetEntity | Array): DeclareFile; }