/** @typedef {typeof __propDef.props} BarChartProps */ /** @typedef {typeof __propDef.events} BarChartEvents */ /** @typedef {typeof __propDef.slots} BarChartSlots */ export default class BarChart extends SvelteComponentTyped< { [x: string]: any }, { [evt: string]: CustomEvent }, {} > {} export type BarChartProps = typeof __propDef.props export type BarChartEvents = typeof __propDef.events export type BarChartSlots = typeof __propDef.slots import { SvelteComponentTyped } from 'svelte' declare const __propDef: { props: { [x: string]: any } events: { [evt: string]: CustomEvent } slots: {} } export {}