import type { FunctionDefinition } from '../../definition_types'; /** * Rounds a number to the specified number of decimal places. * Defaults to 0, which returns the nearest integer. If the * precision is a negative number, rounds to the number of digits left * of the decimal point. * * @example * FROM employees * | KEEP first_name, last_name, height * | EVAL height_ft = ROUND(height * 3.281, 1) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=round.d.ts.map