import { Ignore } from 'ignore';
/**
 * Generates ignorer based on ignore file content.
 *
 * @param cwd Current work directory.
 * @param ignorePath Ignore path.
 * @returns An instance of an Ignorer
 */
export declare const getIgnorer: (cwd: string, ignorePath: string) => Ignore;
