import { SfCommand } from '@salesforce/sf-plugins-core';
import { AnyJson } from '@salesforce/ts-types';
export declare class Deploy extends SfCommand<any> {
    static readonly description: string;
    static readonly examples: string[];
    static readonly requiresProject = true;
    static readonly flags: any;
    protected xorFlags: string[];
    run(): Promise<AnyJson>;
}
