import type { FunctionDefinition } from '../../definition_types'; /** * Removes leading and trailing whitespaces from a string. * * @example * ROW message = " some text ", color = " red " * | EVAL message = TRIM(message) * | EVAL color = TRIM(color) */ declare const definition: FunctionDefinition; export default definition; //# sourceMappingURL=trim.d.ts.map