export { findFiles }; export { findFilesParseCliArgs }; export { filterFiles }; export type { FindFilter }; type FindFilter = { terms: string[]; exclude: boolean; }; declare function findFiles(pattern: string): Promise; declare function filterFiles(files: string[], findFilter: null | FindFilter): string[]; declare function findFilesParseCliArgs(): null | FindFilter;