import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from "@salesforce/ts-types";
export declare class PackageXmlRemove extends SfCommand<any> {
    static readonly description = "Removes the content of a package.xml file matching another package.xml file";
    static readonly examples: string[];
    static readonly requiresProject = false;
    static readonly flags: any;
    protected packageXmlFile: string;
    protected removePackageXmlFile: string;
    protected removedOnly: boolean;
    protected outputFile: string;
    run(): Promise<AnyJson>;
}
