import { IColumnChart } from "./Column";

export interface IPercentColumnChart extends Omit<IColumnChart, 'type'> {
    type: "percent-column",
}