import { Technicals } from './Technicals';
import { MSQuote } from './MSQuote';
import { IConstants } from './IConstants';
export declare class Neutralization implements IConstants {
    oMSQuote: any;
    iPC: number;
    oPC: any;
    oBPC: any;
    oStep3: any;
    getBiggerChart(): Technicals;
    constructor(oMSQuote: MSQuote, oPC: Technicals);
    isUpWaveNeutralized(iDay: number): number;
    getPeriodicityDates(iPC: number, oPC: Technicals, iBPC: number, oBPC: Technicals, iDay: number): number;
    isDownWaveNeutralized(iDay: number): number;
}
