import { ChartType } from '../../../../../constants/chart-style';
import BaseBarChartStyleService, { IBarChartStyle } from '../bar/base';
export interface ILineBarChartStyle extends IBarChartStyle {
}
export default abstract class LineBarChartStyleService extends BaseBarChartStyleService {
    chartType: ChartType;
    constructor(option: ILineBarChartStyle);
}
