import type { FunctionDefinition } from '../../definition_types'; /** * Concatenates two or more strings. * * @example * FROM employees * | KEEP first_name, last_name * | EVAL fullname = CONCAT(first_name, " ", last_name) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=concat.d.ts.map