/*! * @author electricessence / https://github.com/electricessence/ * Licensing: MIT https://github.com/electricessence/TypeScript.NET-Core/blob/master/LICENSE.md */ import { Match, Regex } from "./RegularExpressions"; import IEnumerator from "../Collections/Enumeration/IEnumerator"; export declare class RegexMatchEnumerator { private readonly _pattern; constructor(pattern: string | RegExp | Regex); matches(input: string): IEnumerator; static matches(input: string, pattern: string | RegExp | Regex): IEnumerator; } declare const _default: typeof RegexMatchEnumerator.matches; export default _default;