import { CliCommand } from "./common.js"; import { type DependencyTypes } from "../reports/Validation.js"; import { DiffReport } from "../reports/DiffReport.js"; export declare class DiffCommand extends CliCommand { range: [string, string][] | undefined; type: DependencyTypes; static usage: import("clipanion").Usage; static paths: string[][]; getReports(): DiffReport; }