import { ILog } from "./types";
/**
 * Given globs or paths to gitignore files, return a predicate for filtering.
 *
 * @param ignoreFileGlobs The globs or paths to gitignore files.
 * @returns A predicate for filtering. If the predicate returns true, the file
 * should be accepted; otherwise, it should be ignored.
 */
declare const _default: (ignoreFileGlobs: ReadonlyArray<string>, log: ILog) => Promise<(f: string) => boolean>;
export default _default;
