import ColumnChartView from './ColumnChartView'; import type { ColumnChartComponentPlugin } from './types'; export default class ColumnChart implements ColumnChartComponentPlugin { title: string; type: string; icon: string; configPanelSchema: import("@duckyjs/ducky").ConfigPanelSchema; View: typeof ColumnChartView; }