import type { FunctionDefinition } from '../../definition_types'; /** * Returns the first of its arguments that is not null. If all arguments are null, it returns `null`. * * @example * ROW a=null, b="b" * | EVAL COALESCE(a, b) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=coalesce.d.ts.map