declare global { interface String { matchAll(regex: RegExp): MatchAllExecuted; } } export declare class MatchAllExecuted { executeds: { value: string[]; }[]; input: string; constructor(input: string); next(): { value: string[]; }; }