export declare const pluginRoot: string; export interface CreatePathToPatternOptions { root: string; include: any[]; exclude: any[]; } export declare const createPathToPattern: (options: CreatePathToPatternOptions) => { include: RegExp[]; exclude: RegExp[]; match: (file: string) => boolean; }; export declare const md5: (context: any) => string;