import { ViewContainerRef } from '@angular/core';
import { ComplexBase, ArrayBase } from '@syncfusion/ej2-angular-base';
/**
 * Series Directive
 * ```html
 * <e-series-collection>
 * <e-series>
 * <e-segments>
 * <e-segment>
 * </e-segment>
 * </e-segments>
 * </e-series-collection>
 * ```
 */
export declare class SegmentDirective extends ComplexBase<SegmentDirective> {
    private viewContainerRef;
    directivePropList: any;
    /**
     * Defines the color of a region.
     * @default null
     */
    color: any;
    /**
     * Defines the pattern of dashes and gaps to stroke.
     * @default '0'
     */
    dashArray: any;
    /**
     * Defines the starting point of region.
     * @default null
     */
    value: any;
    constructor(viewContainerRef: ViewContainerRef);
}
/**
 * Segment Array Directive
 * @private
 */
export declare class SegmentsDirective extends ArrayBase<SegmentsDirective> {
    constructor();
}
