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