interface IsMatch { /** * check if string matches regex * @param actual * @param regex * @example match('foo', /foo/); * @example notMatch('foo', /bar/); */ (actual: string, regex: RegExp): void; } export declare const match: IsMatch, notMatch: IsMatch; export {}; //# sourceMappingURL=match.d.ts.map