import { TradingSuggestion } from '../types';
export interface RsiIndicator {
    calculate(prices: number[]): TradingSuggestion;
}
export declare class RsiIndicatorImpl implements RsiIndicator {
    calculate(prices: number[]): TradingSuggestion;
    private calculateRSIIndicator;
}
//# sourceMappingURL=rsiIndicator.d.ts.map