import { TMixed } from "../common";
/**
 * - 计算BOLL指标
 * @param {number[]} CLOSE - 收盘价序列
 * @param {number} M - 周期 default: 20
 * @returns {{ BOLL: TMixed[]; UB: TMixed[]; LB: TMixed[] }} - BOLL指标结果
 */
export declare function BOLL(CLOSE: number[], M?: number): {
    BOLL: TMixed[];
    UB: TMixed[];
    LB: TMixed[];
};
