export declare type Pattern = string | RegExp;
export declare function matchPattern(text: string, pattern: Pattern | Pattern[]): boolean;
