declare const AreaChart: import("svelte").Component<{
    data?: any[];
    width?: number;
    height?: number;
    margin?: Record<string, any>;
    colors?: any[];
    animate?: boolean;
    showPoints?: boolean;
    showGrid?: boolean;
    curve?: string;
    fillOpacity?: number;
    strokeWidth?: number;
    xLabel?: string;
    yLabel?: string;
    xIsTime?: boolean;
    dateFormat?: string;
}, {}, "">;
type AreaChart = ReturnType<typeof AreaChart>;
export default AreaChart;
//# sourceMappingURL=AreaChart.svelte.d.ts.map