type GatherFilepathsOptions = { /** * The input directory to search for files */ input: string; /** * The filepath globs to include in the search */ include: Array; /** * The filepath globs to exclude from the search */ exclude: Array; }; /** * Return a list of absolute file paths based on the include and exclude globs and the given input directory. */ declare function gatherFilepaths(options: GatherFilepathsOptions): Promise>; export { gatherFilepaths, };