import { Range } from '../../types'; import { StackedPaneConfig } from '../stacked/types'; import { IndicatorData, IndicatorStyle } from './types'; export interface BuildIndicatorPaneOptions { id: string; /** Flex ratio inside createStackedChart (default 0.25) */ height?: number | string; label?: string; data: IndicatorData; style?: IndicatorStyle; /** Lock Y range (recommended for oscillators) */ yRange?: Range | "auto"; tickCount?: number; showXAxis?: boolean; seriesId?: string; } /** * Build a stacked pane pre-configured for a trading indicator * (histogram + lines + fills + markers). */ export declare function buildIndicatorPane(options: BuildIndicatorPaneOptions): StackedPaneConfig;