declare const BarChart: import("svelte").Component<{
    data?: any[];
    width?: number;
    height?: number;
    margin?: Record<string, any>;
    color?: string;
    animate?: boolean;
    showValues?: boolean;
    xLabel?: string;
    yLabel?: string;
}, {}, "">;
type BarChart = ReturnType<typeof BarChart>;
export default BarChart;
//# sourceMappingURL=BarChart.svelte.d.ts.map