/** * Removes leading whitespace from `str`. * * @param {String} str The string to trim. * @returns {String} Returns the trimmed string. * @example * * trimLeft(' abc '); //=> 'abc ' * */ export declare const trimLeft: (str?: string) => string; export default trimLeft;