export declare type IRemoveSourceMapsResponse = { total: number; changed: Array<{ path: string; }>; }; export declare function removeSourceMapRefs(...dirs: string[]): Promise<{ total: number; changed: { path: string; }[]; }>; export declare function removeSourceMapRef(file: string): Promise;