type Predicate = (str: string) => boolean; type Matcher = string | RegExp | Predicate; export declare const isMatch: (str: string, matcher: Matcher) => boolean; export default Matcher;