import { Arguments, Command, CommandConfigOptions } from "@lerna/core"; export declare function factory(argv: Arguments): DiffCommand; interface DiffCommandOptions extends CommandConfigOptions { pkgName?: string; ignoreChanges?: string[]; } export declare class DiffCommand extends Command { private args; initialize(): void; execute(): Promise; } export {};