/** * @file match * @author Cuttle Cong * @date 2018/3/25 * @description */ import { Matcher } from '../types/TemplateConfig'; export declare function isMatch(value: string, m: Matcher): boolean; export declare function isIncludes(path: string, { includes, excludes }?: { includes?: Matcher; excludes?: Matcher; }): boolean; export default function match(value: Array, m: Matcher): string[];