import { Source } from './TransformRunner'; export interface Options { extensions?: Set; cwd?: string; } /** * Builds an iterator that loops through all the files in the given paths, * matching an allowlist of extensions. Ignores files excluded by git. */ export declare function iterateSources(roots: Array, { extensions, cwd, }?: { extensions?: Set; cwd?: string; }): AsyncGenerator;