import BaseBarChartStyleService, { IBarChartStyle } from './base';
/**
 * 柱形图的base chartStyleService
 * 需要处理y轴坐标
 */
export default abstract class SimpleBarChartStyleService extends BaseBarChartStyleService {
    constructor(options: IBarChartStyle);
}
