import type { FunctionDefinition } from '../../definition_types'; /** * Round a number down 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.floor. * * @example * ROW a=1.8 * | EVAL a=FLOOR(a) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=floor.d.ts.map