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<P extends IIgrPolarLineSeriesBaseProps = IIgrPolarLineSeriesBaseProps> extends IgrPolarBase<P> {
    /**
                                 * @hidden
                                 */
    get i(): PolarLineSeriesBase;
    constructor(props: P);
}
export interface IIgrPolarLineSeriesBaseProps extends IIgrPolarBaseProps {
}
