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