/** * Reads relative file paths given a working directory and a glob. * Relative paths are generated by removing a certain */ import { type ITerminal } from '@rushstack/terminal'; import type IFile from '../models/packageXml/IFile'; /** Loads a directory of files into IFile objects */ export declare function getFilesAsync(terminal: ITerminal, cwd: string, globs: string, foundMessage?: string): Promise; /** Reads the list of relative path from a specified folder */ export declare function getRelativeFilePathsAsync(terminal: ITerminal, cwd: string, globs: string, foundMessage?: string): Promise; //# sourceMappingURL=getFiles.d.ts.map