import PieBaseStyleService, { IPieChartStyle } from './base';
import { ChartType } from '../../../../../constants/chart-style';
export default abstract class PieBucketStyleService extends PieBaseStyleService {
    chartType: ChartType;
    sectorOffset?: number;
    getOptions(): IPieChartStyle;
    constructor(chart: IPieChartStyle);
}
