import { EMA, FasterEMA } from '../EMA/EMA'; import { FasterWSMA, WSMA } from '../WSMA/WSMA'; import { FasterSMA, SMA } from '../SMA/SMA'; export declare type MovingAverageTypes = typeof EMA | typeof SMA | typeof WSMA; export declare type FasterMovingAverageTypes = typeof FasterEMA | typeof FasterSMA | typeof FasterWSMA;