import Echart, { type Props as EchartProps, } from '$src/lib/internal/shared/Echart' import ChartWrapper, { type WrapperProps, } from '$src/lib/internal/shared/ChartWrapper' import { theme as client, type FunnelChartProps, type Dataset, } from '@latitude-data/client' const generate = client.ui.chart.generateFunnelConfig type Props = Omit & Omit & WrapperProps function FunnelChart({ data, isLoading, error, title, description, bordered = false, sort, width, height, locale = 'en', animation = true, orientation = 'vertical', showColorGradient = false, showLabels = true, showDecal = false, showLegend = false, download, }: Props) { return ( {({ dataset, contentHeight, }: { dataset: Dataset contentHeight?: number }) => ( )} ) } export { type Props } export default FunnelChart