import { FlagsConfig, SfdxCommand } from '@salesforce/command';
import { AnyJson } from '@salesforce/ts-types';
export declare class OrgCloneCommand extends SfdxCommand {
    static readonly longDescription: string;
    static readonly help: string;
    static readonly description: string;
    static readonly showProgress = true;
    static readonly requiresProject = false;
    static readonly varargs = true;
    static readonly orgType: string;
    static readonly requiresUsername = true;
    static readonly flagsConfig: FlagsConfig;
    readJsonDefFile(): Promise<AnyJson>;
    run(): Promise<unknown>;
}
