import { getFilesFromDir } from './getFilesFromDir'; import { search } from './fileSearch'; import { LineResult, SearchOptions } from './types'; /** * @param {string[]} paths file locations to search * @param {string} textToSearch Text to search in files * @param {object} options Various options for file search */ declare const fileSearch: (paths: string[], textToSearch: string, options: SearchOptions) => Promise<(string[] | LineResult[])[]>; export { fileSearch, search, getFilesFromDir }; //# sourceMappingURL=index.d.ts.map