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