import { SvelteComponentTyped } from 'svelte'
import {
	BoxplotChart as BoxplotChartCore,
	type BoxplotChartOptions,
	type ChartTabularData
} from '@carbon/charts'
declare const __propDef: {
	props: {
		[x: string]: any
		options: BoxplotChartOptions
		data: ChartTabularData
		chart?: BoxplotChartCore | undefined
		ref?: HTMLDivElement | undefined
	}
	events: {
		load: CustomEvent<null>
		update: CustomEvent<{
			data: ChartTabularData
			options: import('@carbon/charts').BaseChartOptions
		}>
		destroy: CustomEvent<null>
	} & {
		[evt: string]: CustomEvent<any>
	}
	slots: {}
}
export type BoxplotChartProps = typeof __propDef.props
export type BoxplotChartEvents = typeof __propDef.events
export type BoxplotChartSlots = typeof __propDef.slots
export default class BoxplotChart extends SvelteComponentTyped<
	BoxplotChartProps,
	BoxplotChartEvents,
	BoxplotChartSlots
> {}
export {}
