import type { FunctionDefinition } from '../../definition_types'; /** * Returns the value of `base` raised to the power of `exponent`. * * Note: It is still possible to overflow a double result here; in that case, null will be returned. * * @example * ROW base = 2.0, exponent = 2 * | EVAL result = POW(base, exponent) * * @example * ROW base = 4, exponent = 0.5 * | EVAL s = POW(base, exponent) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=pow.d.ts.map