/**
 * Returns a value with the magnitude of x and the sign of y.
 * NOTE: a port of c++ method from tgmath.h
 * @param {number} x
 * @param {number} y take sign from this value
 * @returns {number}
 */
export function copysign(x: number, y: number): number;
//# sourceMappingURL=copysign.d.ts.map