export type Matcher = string | RegExp | ((name: string) => boolean) | '*';
declare function matchEvent(matcher: Matcher, name: string): boolean;
export default matchEvent;
