import { Ignore } from 'ignore'; import { ISourceMapsEraser } from './interface'; export declare class SkipCopySourceMaps implements ISourceMapsEraser { protected pattern: string | string[]; protected ignoredForCopyFilesHandler: Ignore; constructor(pattern?: string | string[]); isShouldSkipCopy(path: string): boolean; remove(): Promise; }