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