/** * Regular expression match. */ export interface RegexMatch { match: string; index: number; groups: string[]; } /** * Regular expression type. */ export declare enum RegexType { match = "Match", group = "Group" }