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