/** * String Expression Operators: https://docs.mongodb.com/manual/reference/operator/aggregation/#string-expression-operators */ import { Options } from '../../../core'; /** * Removes whitespace characters, including null, or the specified characters from the beginning of a string. * * @param obj * @param expr */ export declare function $ltrim(obj: object, expr: any, options: Options): any;