import { IgrPolarBase, IIgrPolarBaseProps } from "./igr-polar-base"; import { PolarLineSeriesBase } from "./PolarLineSeriesBase"; /** * Represents the base class from which all IgxDataChartComponent polar line series are derived. */ export declare abstract class IgrPolarLineSeriesBase

extends IgrPolarBase

{ /** * @hidden */ get i(): PolarLineSeriesBase; constructor(props: P); } export interface IIgrPolarLineSeriesBaseProps extends IIgrPolarBaseProps { }