/** @param path the directory to start recursively finding files in * @param filter either a blacklist or a filter function that returns false to ignore file name * @returns promise that resolves to array of found files */ export declare function findFiles(path: string, filter?: string[] | ((name: string) => boolean), paths?: string[]): Promise;