/** * trims the end whitespaces from the provided string * @example * trimEnd('hello ') * // returns 'hello' */ export default function trimEnd(str: string): string; //# sourceMappingURL=trimEnd.d.ts.map