import { ViewContainerRef } from '@angular/core'; import { ComplexBase, ArrayBase } from '@syncfusion/ej2-ng-base'; /** * 'e-presets' directive represent a presets of angular daterangepicker * It must be contained in a daterangepicker component(`ej-daterangepicker`). * ```html * * * * * * * ``` */ export declare class PresetDirective extends ComplexBase { private viewContainerRef; /** * Defines the end date of the preset range */ end: any; /** * Defines the label string of the preset range. */ label: any; /** * Defines the start date of the preset range. */ start: any; constructor(viewContainerRef: ViewContainerRef); } /** * Preset Array Directive * @private */ export declare class PresetsDirective extends ArrayBase { constructor(); }