/**
 * Methodology used to calculate Pivot Points
 */
export declare enum PivotPointsEnum {
    CLASSIC = "CLASSIC",
    WOODIE = "WOODIE",
    CAMARILLA = "CAMARILLA",
    FIBONACCI = "FIBONACCI"
}
/**
 * Method used to calculate Pivot
 */
export declare enum PivotEnum {
    HLC3 = "hlc3",
    OHL3 = "ohl3",
    OHLC4 = "ohlc4",
    HLCC4 = "hlcc4",
    OOHL4 = "oohl4"
}
