import { IgRect } from "igniteui-angular-core";
import { IgPoint } from "igniteui-angular-core";
import { IgxVerticalRangeCategorySeriesComponent } from "./igx-vertical-range-category-series-component";
import { RangeBarSeries } from "./RangeBarSeries";
import * as i0 from "@angular/core";
/**
 * Represents a IgxDataChartComponent range bar series.
*/
export declare class IgxRangeBarSeriesComponent extends IgxVerticalRangeCategorySeriesComponent {
    protected createImplementation(): RangeBarSeries;
    /**
                                 * @hidden
                                 */
    get i(): RangeBarSeries;
    constructor();
    /**
     * Gets whether the current series shows a bar shape.
    */
    get isBar(): boolean;
    static ngAcceptInputType_isBar: boolean | string;
    /**
     * Overridden by derived series classes to indicate when marker-less display is preferred or not.
    */
    get isMarkerlessDisplayPreferred(): boolean;
    static ngAcceptInputType_isMarkerlessDisplayPreferred: boolean | string;
    /**
     * Gets or sets the x-radius of the ellipse that is used to round the corners of the bar.
    */
    get radiusX(): number;
    set radiusX(v: number);
    static ngAcceptInputType_radiusX: number | string;
    /**
     * Gets or sets the y-radius of the ellipse that is used to round the corners of the bar.
    */
    get radiusY(): number;
    set radiusY(v: number);
    static ngAcceptInputType_radiusY: number | string;
    /**
     * If possible, will return the best available value bounding box within the series that has the best value match for the world position provided.
    
    * @param world  * The world coordinate for which to get a value bounding box for
    */
    getSeriesValueBoundingBox(world: IgPoint): IgRect;
    /**
     * For a category plotted series, returns the current width of the items within the categories. This only returns a value if the items have some form of width (e.g. columns, bars, etc.) otherwise 0 is returned.
    
    */
    getItemSpan(): number;
    static ɵfac: i0.ɵɵFactoryDeclaration<IgxRangeBarSeriesComponent, never>;
    static ɵcmp: i0.ɵɵComponentDeclaration<IgxRangeBarSeriesComponent, "igx-range-bar-series", never, { "radiusX": { "alias": "radiusX"; "required": false; }; "radiusY": { "alias": "radiusY"; "required": false; }; }, {}, never, never, true, never>;
}
