import type { FunctionDefinition } from '../../definition_types'; /** * Round a number up to the nearest integer. * * Note: This is a noop for `long` (including unsigned) and `integer`. For `double` this picks the closest `double` value to the integer similar to Math.ceil. * * @example * ROW a=1.8 * | EVAL a=CEIL(a) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=ceil.d.ts.map