import type { Router } from '../index'; import { Configuration } from './configurations'; import { VirtualDOM, ChildrenLike } from '@youwol/rx-vdom'; import { Module, Project, Type } from './models'; export declare class TypeView implements VirtualDOM<'div'> { readonly fromModule: Module; readonly type: Type; readonly router: Router; readonly configuration: Configuration; readonly project: Project; readonly tag = "div"; readonly class = "mkapi-type border-left border-bottom ps-2 mkapi-semantic-border-color"; readonly children: ChildrenLike; constructor(params: { fromModule: Module; type: Type; router: Router; configuration: Configuration; project: Project; }); }