import type { BeachballOptions } from '../types/BeachballOptions'; /** * Filter `filePaths` to exclude any paths matching `ignorePatterns`. */ export declare function filterIgnoredFiles(params: Pick & { /** Relative file paths */ filePaths: string[] | Set; /** If specified, called for each ignored file */ logIgnored?: (filePath: string, reason: string) => void; }): string[]; //# sourceMappingURL=filterIgnoredFiles.d.ts.map