import { _ModuleSupport } from 'ag-charts-community';
type MarkerLike = {
    enabled: boolean;
};
type RadarLike = {
    properties: {
        marker: MarkerLike;
        selection: {
            enabled: boolean;
        };
        styler?: Function;
    };
    getStyle(highlightState: undefined): {
        marker: MarkerLike;
    };
};
export declare function radarMarkerDrawMode(series: RadarLike): _ModuleSupport.MarkerDrawMode;
export {};
