import type { FunctionDefinition } from '../../definition_types'; /** * Returns the maximum value from multiple columns. This is similar to `MV_MAX` * except it is intended to run on multiple columns at once. * * Note: When run on `keyword` or `text` fields, this returns the last string in alphabetical order. When run on `boolean` columns this will return `true` if any values are `true`. * * @example * ROW a = 10, b = 20 * | EVAL g = GREATEST(a, b) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=greatest.d.ts.map