/** * Return the integral and fractional parts of the given number. * * @param x - The input number. * @returns A tuple `[ipart, fpart]`, respectively the integral and fractional * parts of `x`. */ export declare function modf(x: number): [number, number];