import { SvelteComponent } from "svelte"; import { Chart as ChartJS } from 'chart.js'; import type { ChartBaseProps } from './types/index.js'; declare const __propDef: { props: ChartBaseProps & { chart?: ChartJS; }; events: { [evt: string]: CustomEvent; }; slots: {}; }; export type ChartProps = typeof __propDef.props; export type ChartEvents = typeof __propDef.events; export type ChartSlots = typeof __propDef.slots; export default class Chart extends SvelteComponent { } export {}; //# sourceMappingURL=Chart.svelte.d.ts.map