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