import { MarkerSeriesDescription } from "./MarkerSeriesDescription";
import { Type } from "./type";
/**
 * @hidden
 */
export declare abstract class RadialBaseDescription extends MarkerSeriesDescription {
    static $t: Type;
    protected get_type(): string;
    constructor();
    private dr;
    get isCustomRadialStyleAllowed(): boolean;
    set isCustomRadialStyleAllowed(a: boolean);
    private dq;
    get isCustomRadialMarkerStyleAllowed(): boolean;
    set isCustomRadialMarkerStyleAllowed(a: boolean);
    private dv;
    get angleAxisRef(): string;
    set angleAxisRef(a: string);
    private dy;
    get valueAxisRef(): string;
    set valueAxisRef(a: string);
    private dp;
    get clipSeriesToBounds(): boolean;
    set clipSeriesToBounds(a: boolean);
    private dx;
    get assigningRadialStyleRef(): string;
    set assigningRadialStyleRef(a: string);
    private dw;
    get assigningRadialMarkerStyleRef(): string;
    set assigningRadialMarkerStyleRef(a: string);
}
