/** * @returns Absolute paths of files/folders matching the given pattern */ export declare const getFilesByPattern: ({ globPath, ignorePatterns, followSymlinks, searchStrategy, taskName, }: { globPath: string; ignorePatterns: string[]; followSymlinks: boolean; searchStrategy: "files-only" | "folders-and-files" | "folders-only"; taskName?: string; }) => string[]; export declare const mapForWatching: (c: string) => string[]; export declare const stripGlobToDir: (globPath: string) => string;