/**
 * Iterates over all contiguous matches of the regular expression over the
 * text. Stops as soon as the regular expression no longer matches at the
 * current position.
 */
export declare function execAll(re: RegExp, text: string): Generator<RegExpExecArray, void, unknown>;
//# sourceMappingURL=execall.d.ts.map