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