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