import { IgcPolarLineSeriesBaseComponent } from "./igc-polar-line-series-base-component";
import { PolarSplineAreaSeries } from "./PolarSplineAreaSeries";
/**
 * Represents a IgxDataChartComponent polar spline area series.
*/
export declare class IgcPolarSplineAreaSeriesComponent extends IgcPolarLineSeriesBaseComponent {
    protected createImplementation(): PolarSplineAreaSeries;
    /**
                                 * @hidden
                                 */
    get i(): PolarSplineAreaSeries;
    constructor();
    connectedCallback(): void;
    disconnectedCallback(): void;
    private static _observedAttributesIgcPolarSplineAreaSeriesComponent;
    static get observedAttributes(): string[];
    static htmlTagName: string;
    protected static _isElementRegistered: boolean;
    static register(): void;
    /**
     * Gets whether the current series shows an area shape.
    */
    get isArea(): boolean;
    /**
     * Gets whether the current series shows a spline shape.
    */
    get isSpline(): boolean;
    /**
     * Gets or sets the Stiffness property.
    */
    get stiffness(): number;
    set stiffness(v: number);
}
