1import minimatch from 'minimatch';
2/**
3 * Indicate the given `filePath` should be excluded by `ignorePaths`
4 */
5export declare function isIgnoredPath(filePath: string, ignorePaths: string[], minimatchOptions?: minimatch.IOptions): boolean;
6