import { IgcSplineFragmentBaseComponent } from "./igc-spline-fragment-base-component";
import { SplineAreaFragment } from "./SplineAreaFragment";
/**
 * Represents one part of a StackedSplineAreaSeries.
*/
export declare class IgcSplineAreaFragmentComponent extends IgcSplineFragmentBaseComponent {
    protected createImplementation(): SplineAreaFragment;
    /**
                                 * @hidden
                                 */
    get i(): SplineAreaFragment;
    constructor();
    connectedCallback(): void;
    disconnectedCallback(): void;
    private static _observedAttributesIgcSplineAreaFragmentComponent;
    static get observedAttributes(): string[];
    static htmlTagName: string;
    protected static _isElementRegistered: boolean;
    static register(): void;
    /**
     * Gets whether the current series shows an area or line shape.
    */
    get isAreaOrLine(): boolean;
    /**
     * Gets whether the current series shows an area shape.
    */
    get isArea(): boolean;
    /**
     * Gets whether the current series shows a spline shape.
    */
    get isSpline(): boolean;
}
