export declare const clipByLastIndex: (input: string, chars: string[]) => string; /** * @param regexps Must have a least one capture group */ export declare const clipByRegexps: (input: string, regexps: RegExp[]) => string; export declare const lowerCaseFirst: (input: string) => string;