import { SeriesOptions } from '../../types'; import { IndicatorSeriesOptions } from './types'; /** * Build native series options from an indicator definition. * Use in any chart pane — standalone or inside createStackedChart. */ export declare function buildIndicatorSeries(options: IndicatorSeriesOptions): SeriesOptions[]; /** Convenience: one call returns all series for chart.addSeries / stacked pane config. */ export declare function createIndicatorSeries(options: IndicatorSeriesOptions): SeriesOptions[]; /** * Detect local extrema on a line for peak/trough markers. */ export declare function detectIndicatorMarkers(x: Float32Array | Float64Array | number[], y: Float32Array | Float64Array | number[], window?: number): import('./types').IndicatorMarker[];