/**
 * Remove chars from end of string.
 */
declare function rtrim(str: any, chars: any): any;
export default rtrim;
