import * as configuration from "../configuration/index.js"; import * as files from "./index.js"; /** * Returns the FullPaths of all files/directories relative to the given sourceDir * that match the given glob */ export declare function getFileNames(config: configuration.Data): Promise; /** * returns all the markdown files in this directory and its children, * relative to the given sourceDir */ export declare function markdownFilesInDir(dirName: string, sourceDir: files.SourceDir): Promise; /** Removes the given excluded files from the given list of filenames */ export declare function removeExcludedFiles(fileList: files.FullFilePath[], excluded: string | string[]): files.FullFilePath[]; //# sourceMappingURL=get-filenames.d.ts.map