import type { FunctionDefinition } from '../../definition_types'; /** * Returns the result of `d * 2 ^ scaleFactor`, * Similar to Java's `scalb` function. Result is rounded as if * performed by a single correctly rounded floating-point multiply * to a member of the double value set. * * @example * row x = 3.0, y = 10 | eval z = scalb(x, y) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=scalb.d.ts.map