//#region src/string/trimEnd.d.ts /** * Removes trailing whitespace or specified characters from string. * * @param str - The string to trim * @param chars - The characters to remove * @returns The trimmed string * * @example * trimEnd(' abc ') // => ' abc' * trimEnd('-_-abc-_-', '-_') // => '-_-abc' */ declare function trimEnd(str: string, chars?: string): string; //#endregion export { trimEnd }; //# sourceMappingURL=trimEnd.d.cts.map