/** * Removes specified characters from the end of a string * * @param {string} string_ - The input string to trim * @param {string} chars - Characters to remove from the end * @returns {string} A new string with specified characters removed from the end * @example * ```typescript * trimEndCharacters("hello!!!", "!"); // Returns: "hello" * trimEndCharacters("123---", "-"); // Returns: "123" * trimEndCharacters("abc123", "xyz"); // Returns: "abc123" * ``` */ export declare const trimEndCharacters: (string_: string, chars: string) => string;