import { OnInit, TemplateRef } from '@angular/core'; export declare class STRowSource { private titles; private rows; add(type: string, path: string, ref: TemplateRef): void; getTitle(path: string): TemplateRef; getRow(path: string): TemplateRef; } export declare class STRowDirective implements OnInit { private ref; private source; id: string; type: 'title'; constructor(ref: TemplateRef, source: STRowSource); ngOnInit(): void; }