import { AnyVirtualDOM, ChildrenLike, VirtualDOM } from '@youwol/rx-vdom'; import { Semantic } from './models'; type HeadingLevel = 'h1' | 'h2' | 'h3' | 'h4'; type Doc = { semantic?: Semantic; path: string; name: string; }; export declare class HeaderView implements VirtualDOM { readonly doc: Doc; readonly relativeToPath: string; readonly withChildren: AnyVirtualDOM[]; readonly withClass: string; readonly text: string; readonly tag: HeadingLevel; readonly id: string; readonly class = "mkapi-header heading d-flex flex-wrap align-items-center"; readonly children: ChildrenLike; constructor(params: { text?: string; tag: HeadingLevel; withClass: string; doc: Doc; withChildren?: AnyVirtualDOM[]; relativeToPath: string; }); } export {};