import SMA from './SMA';
import EMA, { quickEMA } from './EMA';
import RSI, { quickRSI } from './RSI';
import { stoch, smoothedStoch } from './StochRSI';
declare const Indicators: {
    SMA: typeof SMA;
    EMA: typeof EMA;
    quickEMA: typeof quickEMA;
    RSI: typeof RSI;
    quickRSI: typeof quickRSI;
    stoch: typeof stoch;
    smoothedStoch: typeof smoothedStoch;
};
export default Indicators;
