import { IgcNumericXAxisComponent } from "./igc-numeric-x-axis-component";
import { IgcCategoryYAxisComponent } from "./igc-category-y-axis-component";
import { IgcStackedSeriesBaseComponent } from "./igc-stacked-series-base-component";
import { VerticalStackedSeriesBase } from "./VerticalStackedSeriesBase";
import { IgcAxisComponent } from "./igc-axis-component";
/**
 * Base class for stacked series with a numeric x-axis and a category y-axis.
*/
export declare abstract class IgcVerticalStackedSeriesBaseComponent extends IgcStackedSeriesBaseComponent {
    /**
                                 * @hidden
                                 */
    get i(): VerticalStackedSeriesBase;
    constructor();
    connectedCallback(): void;
    disconnectedCallback(): void;
    private static _observedAttributesIgcVerticalStackedSeriesBaseComponent;
    static get observedAttributes(): string[];
    /**
     * Gets or sets the effective x-axis for the current CategorySeries object.
    */
    get xAxis(): IgcNumericXAxisComponent;
    set xAxis(v: IgcNumericXAxisComponent);
    private _xAxisName;
    /**
    * Gets or sets the name to use to resolve xAxis from markup.
    */
    get xAxisName(): string;
    set xAxisName(v: string);
    /**
     * Gets or sets the effective y-axis for the current CategorySeries object.
    */
    get yAxis(): IgcCategoryYAxisComponent;
    set yAxis(v: IgcCategoryYAxisComponent);
    private _yAxisName;
    /**
    * Gets or sets the name to use to resolve yAxis from markup.
    */
    get yAxisName(): string;
    set yAxisName(v: string);
    /**
     * Gets whether or not the current series is vertical series
    */
    get isVertical(): boolean;
    bindAxes(axes: IgcAxisComponent[]): void;
    findByName(name: string): any;
    protected _styling(container: any, component: any, parent?: any): void;
    /**
     * Returns the offset value for this series if grouped on a category axis.
    
    */
    getOffsetValue(): number;
    /**
     * Returns the width of the category grouping this series is in.
    
    */
    getCategoryWidth(): number;
    /**
     * Determine if object can be used as YAxis
    
    * @param axis  * The object to check
    */
    canUseAsYAxis(axis: any): boolean;
    /**
     * Determine if object can be used as XAxis
    
    * @param axis  * The object to check
    */
    canUseAsXAxis(axis: any): boolean;
}
