import { ViewContainerRef } from '@angular/core'; import { ComplexBase, ArrayBase } from '@syncfusion/ej2-ng-base'; /** * Column Directive * ```html * * ``` */ export declare class ColumnDirective extends ComplexBase { private viewContainerRef; /** * Options to customize the border of the columns. */ border: any; /** * The width of the column as a string accepts input both as like '100px' or '100%'. * If specified as '100%, column renders to the full width of its chart. * @default '100%' */ width: any; constructor(viewContainerRef: ViewContainerRef); } /** * Column Array Directive * @private */ export declare class ColumnsDirective extends ArrayBase { constructor(); }