export declare const ALL_FILES: string[]; /** * Returns all the file paths under this locationPath that adhere to this glob patterns. */ export declare function walkFiles(locationPath: string, globPatterns: string[]): string[]; /** * check if a file path adheres to a glob pattern. */ export declare function matchesGlob(filePath: string, globPatterns: string[]): boolean; export declare const removeFolders: (folders: string[]) => void;