import { LineChartProps } from './LineTimeSerieChart.types'; /** * LineTimeSerieChart - A time series line chart component * * @param series - The data series to display (can be symmetrical with above/below) * @param title - The title of the chart * @param height - The height of the chart in pixels * @param startingTimeStamp - Starting timestamp in seconds * @param interval - Interval between data points in seconds * @param duration - Total duration of the chart in seconds * @param unitRange - Configuration for automatic unit scaling * @param syncId - ID to synchronize multiple charts * @param isLoading - Whether to show loading state * @param yAxisType - Type of Y-axis: 'default', 'percentage', or 'symmetrical' * @param yAxisTitle - Label for the Y-axis * @param helpText - Help text shown as tooltip * @param renderTooltip - Custom tooltip renderer */ export declare function LineTimeSerieChart({ series, title, height, startingTimeStamp, interval, duration, unitRange, isLoading, yAxisType, yAxisTitle, helpText, rightTitle, displayPreset, displayOptions, syncId, renderTooltip, }: LineChartProps): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=LineTimeSerieChart.d.ts.map