import type { HighLowClose } from '../../base/Candle.type.js'; import { TrendIndicator } from '../../base/Indicator.js'; export type RandomWalkIndexResult = { high: number; low: number; }; export declare class RandomWalkIndex extends TrendIndicator> { #private; readonly interval: number; constructor(interval?: number); getRequiredInputs(): number; update(candle: HighLowClose, replace: boolean): RandomWalkIndexResult | null; protected calculateSignalState(result?: RandomWalkIndexResult | null | undefined): "BEARISH" | "BULLISH" | "SIDEWAYS" | "UNKNOWN"; }