import { ChartType } from '../../../../../constants/chart-style';
import SimpleBarChartStyleService from './bar-base';
export default abstract class StackVerticalBarChartStyleService extends SimpleBarChartStyleService {
    chartType: ChartType;
    stack: boolean;
}
