import { TradingSuggestion } from '../types';
export interface EmaIndicator {
    calculate(prices: number[]): TradingSuggestion;
}
export declare class EmaIndicatorImpl implements EmaIndicator {
    calculate(prices: number[]): TradingSuggestion;
    private calculateEMAIndicators;
}
//# sourceMappingURL=emaIndicator.d.ts.map