import { MFIConfig } from '../../indicator/volume/moneyFlowIndex';
import { Action } from '../action';
import { Asset } from '../asset';
/**
 * Money flow index strategy.
 *
 * @param asset asset object.
 * @param config configuration.
 * @return strategy actions.
 */
export declare function mfiStrategy(asset: Asset, config?: MFIConfig): Action[];
export { mfiStrategy as moneyFlowIndexStrategy };
