import { CliCommand } from "./common.js"; import { DependencyDumpReport } from "../reports/DependencyDumpReport.js"; import type { Url } from "../reports/Validation.js"; export declare class DependencyDumperCommand extends CliCommand { packages: string[]; folder: string; registry: Url; static usage: import("clipanion").Usage; static paths: string[][]; getReports(): DependencyDumpReport; }