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