/**
 * Lists all files using the specified glob, starting from the given root directory.
 *
 * Will return all matching file paths fully resolved.
 *
 * @param {string} fromGlob
 * @param {string} rootDir
 * @param {string|string[]} [ignore]
 */
export function listFiles(fromGlob: string, rootDir: string, ignore?: string | string[] | undefined): Promise<string[]>;
//# sourceMappingURL=listFiles.d.ts.map