/** * * @param high * @param low * @param period * @param size * @returns First output = Aroon Down, Second output = Aroon Up */ export declare function aroon(high: Array, low: Array, period: number, size?: number): Promise;