/** * `remove` CLI action handler. * * Requires either a package name (positional argument) or the --all flag. * * When --all is given, removes every set entry from the config file and runs * install with zero entries so all managed files are deleted and the lockfile * is cleared. * * When a package name is given, removes matching entries from the config file * (optionally filtered by --output, --presets), then runs a full install with * the remaining entries so orphaned files are deleted and the lockfile is updated. * Fails if no matching entry is found. * * Usage: * filedist remove [--output ] [--presets ] [--dry-run] [--config ] * filedist remove --all [--dry-run] */ export declare function runRemove(argv: string[], cwd: string, lockfilePath: string, configFilePath: string): Promise; //# sourceMappingURL=remove.d.ts.map