/** * A glob utility function that that accepts array of patterns and also * excludes matching patterns that begin with '!' from the returned array * @param arrayOfPatterns - array of patterns * @returns matched files */ declare function globArray(arrayOfPatterns: string[]): string[]; export { globArray };