import { SvelteComponentTyped } from 'svelte'
import {
	StackedBarChart as StackedBarChartCore,
	type BarChartOptions,
	type ChartTabularData
} from '@carbon/charts'
declare const __propDef: {
	props: {
		[x: string]: any
		options: BarChartOptions
		data: ChartTabularData
		chart?: StackedBarChartCore | 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 BarChartStackedProps = typeof __propDef.props
export type BarChartStackedEvents = typeof __propDef.events
export type BarChartStackedSlots = typeof __propDef.slots
export default class BarChartStacked extends SvelteComponentTyped<
	BarChartStackedProps,
	BarChartStackedEvents,
	BarChartStackedSlots
> {}
export {}
