/**
 * Remove white-spaces from beginning and end of string.
 */
declare function trim(str: any, chars?: string[]): any;
export default trim;
