| import { EmailMatch } from './email-match';import { HashtagMatch } from './hashtag-match';import { MentionMatch } from './mention-match';import { PhoneMatch } from './phone-match';import { UrlMatch } from './url-match';export declare type Match = EmailMatch | HashtagMatch | MentionMatch | PhoneMatch | UrlMatch;export declare type MatchType = 'email' | 'hashtag' | 'mention' | 'phone' | 'url';
 |