import { FakeFS, PortablePath } from '@yarnpkg/fslib'; import { PnpApi } from '../types'; import { Manager } from './makeManager'; export type ApplyPatchOptions = { fakeFs: FakeFS; manager: Manager; }; export declare function applyPatch(pnpapi: PnpApi, opts: ApplyPatchOptions): void;