declare const changeVariablesTranslateX: typeof taylorShift; /** * Returns the Taylor shift `p(x + h)` of the given polynomial computed in * `O(n^2)` via repeated synthetic division by `(x - h)` (Horner's scheme). * * @param p a polynomial with coefficients given densely as an array of double * floating point numbers from highest to lowest power, e.g. `[5,-3,0]` * represents the polynomial `5x^2 - 3x` * @param h the shift amount * * @doc */ declare function taylorShift(p: number[], h: number): number[]; export { taylorShift, changeVariablesTranslateX };