import type { FunctionDefinition } from '../../definition_types'; /** * Returns the maximum (end) value of a range. For a range [x, y), it returns y. * * @example * FROM decades * | WHERE decade == 1900 * | EVAL max_bound = RANGE_MAX(date_range) * | KEEP date_range, max_bound */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=range_max.d.ts.map