import { ViewContainerRef } from '@angular/core'; import { ComplexBase, ArrayBase } from '@syncfusion/ej2-ng-base'; /** * Row Directive * ```html * * ``` */ export declare class RowDirective extends ComplexBase { private viewContainerRef; /** * Options to customize the border of the rows. */ border: any; /** * The height of the row as a string accept input both as '100px' and '100%'. * If specified as '100%, row renders to the full height of its chart. * @default '100%' */ height: any; constructor(viewContainerRef: ViewContainerRef); } /** * Row Array Directive * @private */ export declare class RowsDirective extends ArrayBase { constructor(); }